query-502fc5afdb12c0ef20e8e41bfabee95f
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?person ?dateOfBirth
WHERE {
?person wdt:P31 wd:Q5.
?person wdt:P569 ?dateOfBirth.
FILTER (?dateOfBirth = "-355-07-20"^^xsd:dateTime)
}
ORDER BY ASC(?dateOfBirth)
LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?dateOfBirth"):::projected
v2("?person"):::projected
c3(["wd:Q5"]):::iri
f0[["?dateOfBirth = '-355-07-20^^xsd:dateTime'"]]
f0 --> v1
v2 --"wdt:P31"--> c3
v2 --"wdt:P569"--> v1