query-8e2c34964cd96e89648214db9d8c09c0
Force WDQS cache updateHello, often WDQS returns outdated results. Is there some way to force WDQS cache update? Item change forces the update. But operation like add and remove some statement will be written to an item history. Is there something like zero edit? Example query that returns outdated results now:
Use at
- https://query.wikidata.org/sparql
 
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
SELECT ?item WHERE
{
  ?item p:P4533 [] .
  MINUS { ?item p:P17/ps:P17 wd:Q213 }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
  v1("?item"):::projected 
  a1((" "))
  a2((" "))
  c4(["wd:Q213"]):::iri 
  v1 --"p:P4533"-->  a1
  subgraph minus0["MINUS"]
    style minus0 stroke-width:6px,fill:pink,stroke:red;
    v1 --"p:P17"-->  a2
    a2 --"p:statement/P17"-->  c4
  end