query-ea1182793e4977e19915787f227b6943

rq turtle/ttl

Districts in the Department of ParaguayQuery for finding all Districts in the Departments of Paraguay

Use at

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 
WHERE { 
  wd:Q682642 wdt:P150 ?item. # department contains administrative entity (districts) 
  ?item wdt:P31 ?class. # ?item is an instance of ?class 
    ?class wdt:P279* wd:Q13220204. # ?class is a subclass of second-level administrative division 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } 
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?class") v1("?item"):::projected c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal c1(["wd:Q682642"]):::iri c5(["wd:Q13220204"]):::iri c1 --"wdt:P150"--> v1 v1 --"wdt:P31"--> v2 v2 --"wdt:P279"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end