query-ae403db79f98f1a8cb19d14a2cd0dd88
Propertiesdate of birth (P569)
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?date ?article WHERE {
?item ^schema:about ?article .
?article schema:isPartOf <https://or.wikipedia.org/> .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
?date_node wikibase:timePrecision "11"^^xsd:integer .
?date_node wikibase:timeValue ?date .
FILTER (month(?date) = 1 && day(?date) = 26 )
?item p:P569/psv:P569 ?date_node .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v1("?date"):::projected
v4("?date_node")
v3("?item"):::projected
a1((" "))
c11(["11^^xsd:integer"]):::literal
c5([https://or.wikipedia.org/]):::iri
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["month-from-dateTime(?date) = '1^^xsd:integer'day-from-dateTime(?date) = '26^^xsd:integer'"]]
f0 --> v1
v2 --"schema:about"--> v3
v2 --"schema:isPartOf"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end
v4 --"wikibase:timePrecision"--> c11
v4 --"wikibase:timeValue"--> v1
v3 --"p:P569"--> a1
a1 --"p:statement/value/P569"--> v4