query-4d59ca451cb9c4118ec093c017ddd14b
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?item {
?item wdt:P569 ?dateOfBirth .
FILTER(DAY(?dateOfBirth) = 13 && MONTH(?dateOfBirth) = 9) .
?item rdfs:label ?label .
FILTER(STR(?label) = 'Thomas Müller') .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?dateOfBirth")
v3("?item"):::projected
v1("?label")
f0[["str(?label) = 'Thomas Müller'"]]
f0 --> v1
f1[["day-from-dateTime(?dateOfBirth) = '13^^xsd:integer'month-from-dateTime(?dateOfBirth) = '9^^xsd:integer'"]]
f1 --> v2
v3 --"wdt:P569"--> v2
v3 --"rdfs:label"--> v1