-
Notifications
You must be signed in to change notification settings - Fork 125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SPARQL/Update query-types #17
Comments
The unknown query types have been fixed with pull #29. I'll take a look how to fix the regex that does the query type detection to support the new modify syntax. |
wikier
added a commit
that referenced
this issue
Jul 20, 2014
wikier
added a commit
that referenced
this issue
Jul 20, 2014
wikier
added a commit
that referenced
this issue
Jul 20, 2014
wikier
added a commit
that referenced
this issue
Jul 20, 2014
wikier
added a commit
that referenced
this issue
Jul 20, 2014
@indeyets any test that we could add to warranty this fix? |
@wikier can't think of anything which would make sense in terms of current implementation. it's ok to close it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.)The text was updated successfully, but these errors were encountered: