query-e86c2b81f4d95f081a042f4eeaa39685
Kinos in Dresden
Use at
- https://query.wikidata.org/sparql
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#>
#---------------------------------------------------------------------------------------
# Kinos in Dresden (aktuelle und ehemalige)
#---------------------------------------------------------------------------------------
PREFIX schema: <http://schema.org/>
#defaultView:Table;Map
SELECT distinct ?item ?itemLabel ?itemDescription ?image ?coordinate ?article ?eroeffnung ?schliessung
WHERE {
?item (wdt:P131/wdt:P279*) wd:Q1731 . # liegt in der Verwaltungseinheit Dresden (oder Unterklasse)
#?item (wdt:P131/wdt:P279*) wd: . # liegt in der Verwaltungseinheit Dresden (oder Unterklasse)
?item (wdt:P31/wdt:P279*) wd:Q41253 . # ist ein Kino (oder Unterklasse)
OPTIONAL { ?item wdt:P18 ?image . }
OPTIONAL { ?item wdt:P625 ?coordinate . }
OPTIONAL { ?item wdt:P1619 ?eroeffnung . }
OPTIONAL { ?item wdt:P3999 ?schliessung . }
OPTIONAL {
?article schema:about ?item.
?article schema:isPartOf <https://de.wikipedia.org/>.
}
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;
v7("?article"):::projected
v4("?coordinate"):::projected
v5("?eroeffnung"):::projected
v3("?image"):::projected
v2("?item"):::projected
v1("?itemLabel"):::projected
v6("?schliessung"):::projected
a1((" "))
a2((" "))
c12([https://de.wikipedia.org/]):::iri
c5(["wd:Q41253"]):::iri
c14(["bd:serviceParam"]):::iri
c3(["wd:Q1731"]):::iri
c16(["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 optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P1619".-> v5
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P3999".-> v6
end
subgraph optional4["(optional)"]
style optional4 fill:#bbf,stroke-dasharray: 5 5;
v7 -."schema:about".-> v2
v7 --"schema:isPartOf"--> c12
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c14 --"wikibase:language"--> c16
end