query-fd4699905d9676d12b48013d46cbf912

rq turtle/ttl

Query for finding Districts in Department of Paraguay Districts in Paraguay are  ⟩  (Q13220204)second-level administrative division ⟨  (P279)subclass of  ⟩district⟨  They are related to the Department as  ⟩  (Q13220204)second-level administrative division ⟨  (P150)contains the administrative territorial entity  ⟩department⟨ 

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