We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I did the following DELETE:
curl -s https://qlever.cs.uni-freiburg.de/api/wikidata?access-token=<access-token> -H "Content-type: application/sparql-update" --data "PREFIX wdt: <http://www.wikidata.org/prop/direct/> PREFIX wd: <http://www.wikidata.org/entity/> DELETE WHERE { wd:Q873 wdt:P166 ?award_received }"
which returned a JSON with the information that 35 triples were deleted.
But the following SELECT returns the 35 triples that are supposed to be deleted:
curl -s https://qlever.cs.uni-freiburg.de/api/wikidata -H "Accept: text/tab-separated-values" -H "Content-type: application/sparql-query" --data "PREFIX wdt: <http://www.wikidata.org/prop/direct/> PREFIX wd: <http://www.wikidata.org/entity/> SELECT * WHERE { wd:Q873 wdt:P166 ?award_received }"
NOTE: This bug was already there with acb6633 (08.01.2025)
The text was updated successfully, but these errors were encountered:
@hannahbast what's the status of SPARQL Update? Do you have any results of the W3C test suite available?
Sorry, something went wrong.
@namedgraph
Hi,
I cannot clear a graph with: DROP GRAPH <iri> and CLEAR GRAPH <iri> are not supported
DROP GRAPH <iri>
CLEAR GRAPH <iri>
delete { graph <http://example.com> { ?s ?p ?o}} where { ?s ?p ?o }
results in:
{ "exception": "Assertion `wasInserted == true` failed. Please report this to the developers. In file \"/qlever/src/index/LocatedTriples.cpp \" at line 220", "query": "delete { graph <http://example.com> { ?s ?p ?o}} where { ?s ?p ?o }", "resultsize": 0, "status": "ERROR", "time": { "computeResult": 11585, "total": 11585 }
No branches or pull requests
I did the following DELETE:
curl -s https://qlever.cs.uni-freiburg.de/api/wikidata?access-token=<access-token> -H "Content-type: application/sparql-update" --data "PREFIX wdt: <http://www.wikidata.org/prop/direct/> PREFIX wd: <http://www.wikidata.org/entity/> DELETE WHERE { wd:Q873 wdt:P166 ?award_received }"
which returned a JSON with the information that 35 triples were deleted.
But the following SELECT returns the 35 triples that are supposed to be deleted:
curl -s https://qlever.cs.uni-freiburg.de/api/wikidata -H "Accept: text/tab-separated-values" -H "Content-type: application/sparql-query" --data "PREFIX wdt: <http://www.wikidata.org/prop/direct/> PREFIX wd: <http://www.wikidata.org/entity/> SELECT * WHERE { wd:Q873 wdt:P166 ?award_received }"
NOTE: This bug was already there with acb6633 (08.01.2025)
The text was updated successfully, but these errors were encountered: