query-2a6bbc2fa7bf8d6da8a62d1d29d8e4ad
Person in Dresden geboren und ohne Bild
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 schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#-------------------------------------------------------------------------------
# Person in Dresden geboren und ohne Bild (nur Bilder von Commons sind erlaubt)
#-------------------------------------------------------------------------------
#defaultView:Table;ImageGrid
SELECT distinct ?item ?itemLabel ?itemDescription ?artikel_de ?commons ?image ?date_of_birth WHERE {
?item wdt:P31 wd:Q5. # Mensch
#?item rdfs:label ?name
#FILTER(REGEX(STR(?name), "^Ste"))
?item wdt:P19 ?place_of_birth # Geburtsort
filter (?place_of_birth = wd:Q1731) # Geburtsort ist Dresden
OPTIONAL { ?item wdt:P18 ?image. } # Bild
FILTER(!BOUND(?image))
OPTIONAL { ?item wdt:P569 ?date_of_birth. } # Geburtstag
OPTIONAL { ?item wdt:P570 ?date_of_death. } # Todestag
OPTIONAL { ?item wdt:P373 ?commonsProp.} # Commons als Prop
FILTER (?date_of_birth >= "974-06-01T00:00:00Z"^^xsd:dateTime) # geboren nach
FILTER (?date_of_birth <= "2975-07-01T00:00:00Z"^^xsd:dateTime) # geboren vor
# Commons-Link (über "Andere Websites")
OPTIONAL {?commons schema:about ?item ;
schema:isPartOf <https://commons.wikimedia.org/> .
}
OPTIONAL { ?artikel_de schema:about ?item.
FILTER(REGEX(STR(?artikel_de), "de.wikipedia.org/wiki/"))
}
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;
v2("?artikel_de"):::projected
v8("?commons"):::projected
v7("?commonsProp")
v1("?date_of_birth"):::projected
v6("?date_of_death")
v3("?image"):::projected
v5("?item"):::projected
v4("?place_of_birth")
c14([https://commons.wikimedia.org/]):::iri
c16(["bd:serviceParam"]):::iri
c6(["wd:Q5"]):::iri
c18(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal
f0[["?date_of_birth <= '2975-07-01T00:00:00Z^^xsd:dateTime'"]]
f0 --> v1
f1[["?date_of_birth >= '974-06-01T00:00:00Z^^xsd:dateTime'"]]
f1 --> v1
f2[["not bound(?image)"]]
f2 --> v3
f3[["?place_of_birth = 'wd:Q1731'"]]
f3 --> v4
v5 --"wdt:P31"--> c6
v5 --"wdt:P19"--> v4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v5 -."wdt:P18".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v5 -."wdt:P569".-> v1
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v5 -."wdt:P570".-> v6
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v5 -."wdt:P373".-> v7
end
subgraph optional4["(optional)"]
style optional4 fill:#bbf,stroke-dasharray: 5 5;
v8 -."schema:about".-> v5
v8 --"schema:isPartOf"--> c14
end
subgraph optional5["(optional)"]
style optional5 fill:#bbf,stroke-dasharray: 5 5;
v2 -."schema:about".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c16 --"wikibase:language"--> c18
end