query-30b7af7c10e1f83f7dc56f0b3f23f64e

rq turtle/ttl

German municipalities by key

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?muni ?muniLabel ?key WHERE {
  ?muni wdt:P439 ?key
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "de" .
  }
} ORDER BY ?key

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?key"):::projected v2("?muni"):::projected c5(["de"]):::literal c3(["bd:serviceParam"]):::iri v2 --"wdt:P439"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end