query-11ac409be6a722ae436f699f4e24e3fe

rq turtle/ttl

Propertiessignature (P109)date of birth (P569)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Timeline
SELECT ?s ?sLabel ?date ?sig
WHERE
{
 BIND(MONTH(NOW()) AS ?nowMonth)
 BIND(DAY  (NOW()) AS ?nowDay)
 ?s wdt:P109 ?sig  ;
    wdt:P569 ?date .
 FILTER (MONTH(?date) = ?nowMonth && DAY(?date) = ?nowDay)
 SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
}
ORDER BY ASC(?date)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?date"):::projected v4("?nowDay") v4("?nowMonth") v4("?s"):::projected v5("?sig"):::projected c4(["bd:serviceParam"]):::iri c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["month-from-dateTime(?date) = ?nowMonthday-from-dateTime(?date) = ?nowDay"]] f0 --> v1 f0 --> v4 f0 --> v4 bind1[/"month-from-dateTime(NOW())"/] bind1 --as--o v4 bind2[/"day-from-dateTime(NOW())"/] bind2 --as--o v4 v4 --"wdt:P109"--> v5 v4 --"wdt:P569"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end