query-671555d91885165dcabd5ceca5babe42

rq turtle/ttl

TODO

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT (COUNT(?item) AS ?count)
WHERE
{
  ?item wdt:P31 wd:Q5 .
  ?item wdt:P570 ?dod . 
  FILTER("2015-00-00"^^xsd:date <= ?dod)
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?count") v1("?dod") v2("?item"):::projected c3(["wd:Q5"]):::iri f0[["'2015-00-00^^xsd:date' <= ?dod"]] f0 --> v1 v2 --"wdt:P31"--> c3 v2 --"wdt:P570"--> v1 bind2[/"count(?item)"/] v2 --o bind2 bind2 --as--o v3