query-268dded686f69c0dd856ca8afc2ac7f5
TODO
Use at
- https://query.wikidata.org/sparql
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 ?object ?objectLabel (YEAR(?date) as ?year)
WHERE
{
?object wdt:P31 wd:Q577. #item is a year
?object wdt:P585 ?date . #item has a 'point in time' property
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
FILTER (YEAR(?date) > 2100) #value from the 'point in time' property greater than 2100
}
ORDER BY ?year
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?date"):::projected
v3("?object"):::projected
v4("?year")
c3(["wd:Q577"]):::iri
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
f0[["year-from-dateTime(?date) > '2100^^xsd:integer'"]]
f0 --> v2
v3 --"wdt:P31"--> c3
v3 --"wdt:P585"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end
bind1[/"year-from-dateTime(?date)"/]
v2 --o bind1
bind1 --as--o v4