query-a586cb40ab5d83d427a5277f9cb5b5e3
Problem with simple queryHi! Is there a bug or am I missing something? I don't see why this query doesn't return a result:
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?instance ?instanceLabel
WHERE {
VALUES ?item {wd:Q23010088} . ?item wdt:P31 ?instance .
SERVICE wikibase:label {bd:serviceParam wikibase:language "en"}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?instance"):::projected
v1("?item"):::projected
c3(["bd:serviceParam"]):::iri
c5(["en"]):::literal
bind0[/VALUES ?item/]
bind0-->v1
bind00(["wd:Q23010088"])
bind00 --> bind0
v1 --"wdt:P31"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end