query-d43be14ea24b1972eb1ecace9c672900

rq turtle/ttl

Wosobiny, rodźene w Budyšinje

Use at

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 Bautzen 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:Q14835)       # Geburtsort ist Bautzen
  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 >= "1600-06-01T00:00:00Z"^^xsd:dateTime)  # geboren nach  
  FILTER (?date_of_birth <= "1995-07-01T00:00:00Z"^^xsd:dateTime)  # geboren vor
  SERVICE wikibase:label { bd:serviceParam wikibase:language "hsb,de,[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(["hsb,de,#91;AUTO_LANGUAGE#93;"]):::literal f0[["?date_of_birth <= '1995-07-01T00:00:00Z^^xsd:dateTime'"]] f0 --> v1 f1[["?date_of_birth >= '1600-06-01T00:00:00Z^^xsd:dateTime'"]] f1 --> v1 f2[["?place_of_birth = 'wd:Q14835'"]] 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