Why SPARQLStore is not graph_aware? · Issue #399 · RDFLib/rdflib (original) (raw)

SPARQLStore is by default context_aware but not (yet?) graph_aware:

from rdflib import Dataset from rdflib.plugins.stores.sparqlstore import SPARQLStore

store = SPARQLStore("http://localhost:3030/test/query") graph = Dataset(store) Exception: DataSet must be backed by a graph-aware store!

Should graph-awareness be enabled?