query-193ef8821323c53c505e50189d58b70a

rq turtle/ttl

Propertieslocated in the administrative territorial entity (P131)contains the administrative territorial entity (P150)applies to jurisdiction (P1001)

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 DISTINCT ?item ?itemLabel WHERE {  
  ?adminTree (wdt:P131)* wd:Q5907 .
  ?adminTree (wdt:P150)* ?territory .
  {
    ?item wdt:P131 ?territory . 
  } UNION { 
    ?item wdt:P1001 ?territory .
  } 
  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") v4("?item"):::projected v1("?itemLabel"):::projected v3("?territory") c8(["de"]):::literal c6(["bd:serviceParam"]):::iri c2(["wd:Q5907"]):::iri v2 --"wdt:P131"--> c2 v2 --"wdt:P150"--> v3 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v4 --"wdt:P1001"--> v3 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v4 --"wdt:P131"--> v3 end union0r <== or ==> union0l end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end