query-e7edb39ba5cb364866944e2eae5b93c7
Recent changes of a specific propertyCurrently I am trying to search for last modifications of wikidata items like this:
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?item ?date
WHERE { ?item wdt:P31 wd:Q3305213;
schema:dateModified ?date.}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?date"):::projected
v1("?item"):::projected
c2(["wd:Q3305213"]):::iri
v1 --"wdt:P31"--> c2
v1 --"schema:dateModified"--> v2