query-714bc8fe7642d2584d807227e059841e

rq turtle/ttl

Museen in 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#>
#---------------------------------------------------------------------------------------
# Alle Museen der Stadt Dresden
#---------------------------------------------------------------------------------------
#defaultView:Table;Map
SELECT distinct ?item ?itemLabel ?itemDescription ?image ?coordinate 
WHERE {    
  ?item (wdt:P131/wdt:P279*) wd:Q1731 .  # Liegt in Verwaltungseinheit Dresden (oder Unterklasse)
  ?item (wdt:P31/wdt:P279*) wd:Q33506 .  # ist ein Museum (oder Unterklasse)
  OPTIONAL { ?item wdt:P18 ?image . }
  OPTIONAL { ?item wdt:P625 ?coordinate . }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
}
ORDER BY ?itemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?coordinate"):::projected v3("?image"):::projected v2("?item"):::projected v1("?itemLabel"):::projected a1((" ")) a2((" ")) c5(["wd:Q33506"]):::iri c9(["bd:serviceParam"]):::iri c3(["wd:Q1731"]):::iri c11(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal v2 --"wdt:P131"--> a1 a1 --"wdt:P279"--> c3 v2 --"wdt:P31"--> a2 a2 --"wdt:P279"--> c5 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P625".-> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end