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
While this does not work: res = kg.select('select * where {?s ?p ?o} limit 100', default_graph_uri='urn:test3') # , named_graph_uri='urn:test3') pprint.pprint(res)
... the following works: res = kg.select('select * FROM <urn:test3> where {?s ?p ?o} limit 100') pprint.pprint(res)
From the documentation I understood that this should be equivalent.
The text was updated successfully, but these errors were encountered:
While this does not work:
res = kg.select('select * where {?s ?p ?o} limit 100', default_graph_uri='urn:test3') # , named_graph_uri='urn:test3') pprint.pprint(res)
... the following works:
res = kg.select('select * FROM <urn:test3> where {?s ?p ?o} limit 100') pprint.pprint(res)
From the documentation I understood that this should be equivalent.
The text was updated successfully, but these errors were encountered: