query-47b7e375c912c73120794b9552c3c2d3
TODO
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 ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?human ?humanLabel ?lastName ?givenNames ?dob
WHERE {
?human wdt:P106 wd:Q82955 .
?human p:P735/ps:P735 ?givenNames.
?human wdt:P734 ?lastName.
?human wdt:P569 ?dob .
FILTER(?dob >= xsd:dateTime("1946-06-14T00:00:00Z") &&
?dob < xsd:dateTime("1946-06-15T00:00:00Z")) .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?dob"):::projected
v3("?givenNames"):::projected
v2("?human"):::projected
v4("?lastName"):::projected
a1((" "))
c10(["bd:serviceParam"]):::iri
c12(["en"]):::literal
c4(["wd:Q82955"]):::iri
f0[["?dob >= http://www.w3.org/2001/XMLSchema#dateTime('1946-06-14T00:00:00Z')?dob < http://www.w3.org/2001/XMLSchema#dateTime('1946-06-15T00:00:00Z')"]]
f0 --> v1
v2 --"p:direct/P106"--> c4
v2 --"p:P735"--> a1
a1 --"p:statement/P735"--> v3
v2 --"p:direct/P734"--> v4
v2 --"p:direct/P569"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end