The following SPARQL is from SQID python script to generate a properties.json. The following SPARQL would work in query.wikidata.org
PREFIX wikibase: <http://wikiba.se/ontology#>
SELECT ?id ?idLabel
WHERE {
?id ?b wikibase:Property .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
Which resulted in ?id
being a list of properties (wd:P6 ,for example)
But in my blazegraph, it would return only
<https://hostname/entity/statement/Q2344-EF3616F6-48B5-47A6-AA6B-372703F251C5>
What might be the cause of this?