query-65e94d72440180819c6f36e004ee1745

rq turtle/ttl

All places in Germany

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 ?location ?subdivisionLabel ?locationLabel WHERE {
    ?subdivision wdt:P279+ wd:Q387917 .
    ?location wdt:P31 ?subdivision .
    SERVICE wikibase:label {
        bd:serviceParam wikibase:language "de" .
    }
 }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?location"):::projected v1("?subdivision") c2(["wd:Q387917"]):::iri c7(["de"]):::literal c5(["bd:serviceParam"]):::iri v1 --"wdt:P279"--> c2 v2 --"wdt:P31"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end