query-dc60823145002bbabd7a0ebe8362eea5

rq turtle/ttl

TODO

Use at

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 bd: <http://www.bigdata.com/rdf#>
SELECT ?person ?personLabel ?date_of_birth
WHERE
{
  ?person wdt:P31 wd:Q5 . # ?person is human
  ?person wdt:P27 wd:Q17 . # ?person is Japanese
  ?person wdt:P569 ?date_of_birth . 
  FILTER("1400-00-00"^^xsd:date <= ?date_of_birth &&
         ?date_of_birth < "1600-00-00"^^xsd:dat)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" . }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?date_of_birth"):::projected v2("?person"):::projected c6(["wd:Q17"]):::iri c9(["bd:serviceParam"]):::iri c4(["wd:Q5"]):::iri c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["'1400-00-00^^xsd:date' <= ?date_of_birth?date_of_birth < s1600-00-00^^<http://www.w3.org/2001/XMLSchema#dat>'"]] f0 --> v1 v2 --"wdt:P31"--> c4 v2 --"wdt:P27"--> c6 v2 --"wdt:P569"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end