query-d256931e1cdf7d296a0b019a59e82c71
Person suchen, Lemma bekannt
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Table
SELECT distinct ?item ?itemLabel ?itemDescription ?date_of_birth ?date_of_death
WHERE {
{
SELECT ?item
WHERE
{
?item rdfs:label "Arthur Goldschmidt"@en .
?item wdt:P31 ?instance_of .
}
}
#OPTIONAL { ?item wdt:P19 ?place_of_birth }. # Geburtsort
#filter (?place_of_birth = wd:Q64) # Geburtsort ist Berlin
#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 >= "1902-02-13T00:00:00Z"^^xsd:dateTime) # geboren nach
#FILTER (?date_of_birth <= "1902-02-13T00:00:00Z"^^xsd:dateTime) # geboren vor
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }
}
order by ?date_of_birth
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?date_of_birth"):::projected
v3("?instance_of")
v2("?item"):::projected
c6(["bd:serviceParam"]):::iri
c8(["de,en"]):::literal
c2([sArthur Goldschmidt^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal
v2 --"rdfs:label"--> c2
v2 --"wdt:P31"--> v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P569".-> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end