query-c46545a0bb20b9de30293ca02c6c15d4
Year (July 15)I was looking for a list of all years from 1800 - 2100. They bolow query should do the trick:
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT *
WHERE {
?year wdt:P31 wd:Q577 ;
wdt:P585 ?point_of_time .
FILTER (?point_of_time >= "1800-00-01T00:00:00"^^xsd:dateTime &&
?point_of_time <= "2100-12-31T00:00:00"^^xsd:dateTime)
}
ORDER BY ?point_of_time
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?point_of_time"):::projected
v2("?year"):::projected
c4(["wd:Q577"]):::iri
f0[["?point_of_time >= '1800-00-01T00:00:00^^xsd:dateTime'?point_of_time <= '2100-12-31T00:00:00^^xsd:dateTime'"]]
f0 --> v1
v2 --"wdt:P31"--> c4
v2 --"wdt:P585"--> v1