query-92e457c4282451ab96c036bacd23a34c
all Cantons and Districts of Luxembourg SELECT ?item ?itemLabel WHERE { VALUES ?district {wd:Q216888 wd:Q1146429} ?item wdt:P31 ?district. SERVICE wikibase:label { bd:serviceParam wikibase:language "en". } } ORDER BY ?itemLabel
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#>
# all Cantons and Districts of Luxembourg
SELECT ?item ?itemLabel WHERE {
VALUES ?district {wd:Q216888 wd:Q1146429}
?item wdt:P31 ?district.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
} ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?district")
v3("?item"):::projected
v1("?itemLabel"):::projected
c3(["bd:serviceParam"]):::iri
c5(["en"]):::literal
bind0[/VALUES ?district/]
bind0-->v2
bind00(["wd:Q216888"])
bind00 --> bind0
bind01(["wd:Q1146429"])
bind01 --> bind0
v3 --"wdt:P31"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end