query-fc46fc89a2cf24f835cf671de8ec0a8b
RanksCould someone say what is wrong with this query:
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/>
SELECT ?item WHERE {
VALUES ?rank { wikibase:DeprecatedRank wikibase:PreferredRank wikibase:NormalRank }
?item wdt:P31 wd:Q4229812 ; wikibase:rank ?rank .
?item wdt:P17 wd:Q217 .
}
GROUP BY ?item
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?rank")
c5(["wd:Q217"]):::iri
c2(["wd:Q4229812"]):::iri
bind0[/VALUES ?rank/]
bind0-->v1
bind00(["wikibase:DeprecatedRank"])
bind00 --> bind0
bind01(["wikibase:PreferredRank"])
bind01 --> bind0
bind02(["wikibase:NormalRank"])
bind02 --> bind0
v2 --"wdt:P31"--> c2
v2 --"wikibase:rank"--> v1
v2 --"wdt:P17"--> c5