query-e9c914751bccc5f0d166293b7dca2624

rq turtle/ttl

Stadtteile von Dresden

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#>
#---------------------------------------------------------------------------------------
# (sollten 109 sein) Stadtbezirke von Dresden
#---------------------------------------------------------------------------------------
#defaultView:Table
SELECT distinct ?item ?itemLabel ?itemDescription ?image ?coordinate 
WHERE {    
  ?item wdt:P131 wd:Q1731.    # liegt in Verwaltungseinheit Dresden
  ?item wdt:P31 wd:Q253019 .   # Ortsteil 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
}
ORDER BY ?itemDescription  ?itemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?item"):::projected v1("?itemDescription"):::projected v2("?itemLabel"):::projected c6(["bd:serviceParam"]):::iri c4(["wd:Q253019"]):::iri c2(["wd:Q1731"]):::iri c8(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal v3 --"wdt:P131"--> c2 v3 --"wdt:P31"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end