query-467a0dc3828755b9882ebf6a9293c926
Bauwerke mit Auflösungsdatum, aber ohne Eigenschaft "abgegangenes Bauwerk"
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#>
#-------------------------------------------------------------------------------
# Bauwerke mit Auflösungsdatum, aber ohne Eigenschaft "abgegangenes Bauwerk"
#-------------------------------------------------------------------------------
#defaultView:Map;
SELECT DISTINCT ?item ?itemLabel ?itemDescription ?image ?coordinate WHERE {
?item (wdt:P131/wdt:P279*) wd:Q1731 . # liegt in Dresden (oder Unterklasse)
?item (wdt:P31/wdt:P279*) wd:Q811979. # ist ein Bauwerk (oder Unterklasse)
?item wdt:P576 ?ende_datum. # hat eine Endedatum
MINUS { ?item wdt:P31 wd:Q19860854. } # ist keine abgegangenes Bauwerk
OPTIONAL { ?item wdt:P18 ?image . }
OPTIONAL { ?item wdt:P625 ?coordinate . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?coordinate"):::projected
v2("?ende_datum")
v3("?image"):::projected
v1("?item"):::projected
a1((" "))
a2((" "))
c7(["wd:Q19860854"]):::iri
c5(["wd:Q811979"]):::iri
c11(["bd:serviceParam"]):::iri
c3(["wd:Q1731"]):::iri
c13(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal
v1 --"wdt:P131"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P31"--> a2
a2 --"wdt:P279"--> c5
v1 --"wdt:P576"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P31"--> c7
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P625".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c11 --"wikibase:language"--> c13
end