query-1d104c735986b62dcccbaadf817b8cf2
Verschwundene Objekte 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#>
#-------------------------------------------------------------------------------
# Objekte die abgerissen oder zerstört oder aufgelöst wurden --> Auflösungsdatum (P576)
#-------------------------------------------------------------------------------
#defaultView:Table;Map;ImageGrid;
SELECT ?item ?itemLabel ?itemDescription ?ende_datum ?image ?coordinate WHERE {
?item (wdt:P131/wdt:P279*) wd:Q1731 .
?item wdt:P576 ?ende_datum.
OPTIONAL { ?item wdt:P18 ?image . }
OPTIONAL { ?item wdt:P625 ?coordinate . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
#FILTER(EXISTS { ?place (wdt:P31/wdt:P279*) wd:Q1248784. })
}
order by ?ende_datum ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?coordinate"):::projected
v1("?ende_datum"):::projected
v4("?image"):::projected
v3("?item"):::projected
v2("?itemLabel"):::projected
a1((" "))
c8(["bd:serviceParam"]):::iri
c3(["wd:Q1731"]):::iri
c10(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal
v3 --"wdt:P131"--> a1
a1 --"wdt:P279"--> c3
v3 --"wdt:P576"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P18".-> v4
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P625".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end