node-sparql-client
node-sparql-client copied to clipboard
Added functionality for SPARQL INSERT
The current sparql-client lacks functionality for queries such as:
INSERT {
?s ?p ?o.
} WHERE {
?s ?p ?o
} ;
I only added another condition to check if the query is an "INSERT" query to the existing "INSERT DATA" and "DELETE" conditions.
Jeremy