You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am currently working on support for the SPARQL 1.1 Graph Store Protocol in rdfextras-web. I use rdflib.Dataset and I like to discuss this issue:
The following tries to delete the default graph, once using Dataset.remove_graph and once using the SPARQL update DROP DEFAULT. In both cases I expect all triples to be removed from the default graph, while the default graph itself remains. It turns out, that Dataset.remove_graph(Dataset.DEFAULT) does nothing:
(rdflib.term.URIRef(u'a:a'), rdflib.term.URIRef(u'b:b'), rdflib.term.URIRef(u'c:c'), None)
After remove_graph:
(rdflib.term.URIRef(u'a:a'), rdflib.term.URIRef(u'b:b'), rdflib.term.URIRef(u'c:c'), None)
after DROP DEFAULT
The text was updated successfully, but these errors were encountered:
I am currently working on support for the SPARQL 1.1 Graph Store Protocol in rdfextras-web. I use
rdflib.Dataset
and I like to discuss this issue:The following tries to delete the default graph, once using Dataset.remove_graph and once using the SPARQL update
DROP DEFAULT
. In both cases I expect all triples to be removed from the default graph, while the default graph itself remains. It turns out, thatDataset.remove_graph(Dataset.DEFAULT)
does nothing:This yields
The text was updated successfully, but these errors were encountered: