query-90482f405652dfe9395f23be21d1d1f6

rq turtle/ttl

Propertieslocated in the administrative territorial entity (P131)contains the administrative territorial entity (P150)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?p WHERE {
  ?adminTree (wdt:P131)* wd:Q1055 .
  ?adminTree (wdt:P150)* ?territory .
  ?statement pq:P131 ?territory .
  ?item ?p ?statement
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de" }
} ORDER BY ( ?itemLabel )

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?adminTree") v5("?item"):::projected v1("?itemLabel"):::projected v6("?p"):::projected v4("?statement") v3("?territory") c8(["de"]):::literal c6(["bd:serviceParam"]):::iri c2(["wd:Q1055"]):::iri v2 --"wdt:P131"--> c2 v2 --"wdt:P150"--> v3 v4 --"pq:P131"--> v3 v5 -->v6--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end