I have a non-empty database. I can see all of the data, if I query it like this:
select *
from <tag:stardog:api:context:all>
{ ?s ?p ?o }
However, I get no results if I try to get quads instead of triples using the following query:
select *
from <tag:stardog:api:context:all>
{ graph ?g { ?s ?p ?o } }
The problematic query produces the following plan, which is highly suspect:
From all
Slice(offset=0, limit=1000) [#1]
`─ Projection(?g, ?s, ?p, ?o) [#1]
`─ Empty [#1]
Based on my reading of several older threads, it seems like this would be expected to produce all the quads in the database.
Is there another/correct way to query with a variable for the graph name?
Server version is 7.6.4.