-
Notifications
You must be signed in to change notification settings - Fork 124
Closed
Description
Right now, 3 query-types for SPARQL/Update are defined: INSERT, DELETE, MODIFY and query-type is detected via regular expression.
The problem is, that there is no MODIFY keyword in SPARQL/Update grammer as modify query is defined as ( 'WITH' iri )? ( DeleteClause InsertClause? | InsertClause ) UsingClause* 'WHERE' GroupGraphPattern.
On the other hand, there is a bunch of query-types unknown to SPARQLWrapper (LOAD, CLEAR, DROP, etc.)
Reactions are currently unavailable