query-2d6fccaae7cc34845c346f26f64e8f81
Personen geboren in Dresden plus Zeitraum
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
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#>
#----------------------------------------------------------
# Personen geboren in Dresden plus Zeitraum
#----------------------------------------------------------
#defaultView:ImageGrid;Table
SELECT ?item ?itemLabel ?itemDescription ?image ?date_of_birth WHERE {
?item wdt:P31 wd:Q5. # Mensch
?item wdt:P19 ?place_of_birth # Geburtsort
filter (?place_of_birth = wd:Q1731) # Geburtsort ist Dresden
OPTIONAL { ?item wdt:P18 ?image. } # Bild
OPTIONAL { ?item wdt:P569 ?date_of_birth. } # Geburtstag
OPTIONAL { ?item wdt:P570 ?date_of_death. } # Todestag
FILTER (?date_of_birth >= "1974-06-01T00:00:00Z"^^xsd:dateTime) # geboren nach
FILTER (?date_of_birth <= "1975-07-01T00:00:00Z"^^xsd:dateTime) # geboren vor
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
}
order by ?date_of_birth
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?date_of_birth"):::projected
v5("?date_of_death")
v4("?image"):::projected
v3("?item"):::projected
v2("?place_of_birth")
c11(["bd:serviceParam"]):::iri
c5(["wd:Q5"]):::iri
c13(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal
f0[["?date_of_birth <= '1975-07-01T00:00:00Z^^xsd:dateTime'"]]
f0 --> v1
f1[["?date_of_birth >= '1974-06-01T00:00:00Z^^xsd:dateTime'"]]
f1 --> v1
f2[["?place_of_birth = 'wd:Q1731'"]]
f2 --> v2
v3 --"wdt:P31"--> c5
v3 --"wdt:P19"--> v2
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:P569".-> v1
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P570".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c11 --"wikibase:language"--> c13
end