query-f2b3d1b47dced1df8972e4732ac4a485
Objekte in Dresden nach "erster schriftlicher Erwähnung" (Timeline)
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 in Dresden nach "erster schriftlicher Erwähnung" (Timeline)
#-------------------------------------------------------------------------------
#defaultView:Timeline
SELECT DISTINCT ?item ?itemLabel ?itemDescription ?first_written ?image ?coordinate WHERE {
?item wdt:P131+ wd:Q1731 . # liegt in Dresden (oder Unterklasse)
?item wdt:P1249 ?first_written. # erste schriftliche erwähung
# 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]". }
}
order by ?first_written
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?coordinate"):::projected
v1("?first_written"):::projected
v3("?image"):::projected
v2("?item"):::projected
c7(["bd:serviceParam"]):::iri
c2(["wd:Q1731"]):::iri
c9(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal
v2 --"wdt:P131"--> c2
v2 --"wdt:P1249"--> v1
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;
c7 --"wikibase:language"--> c9
end