Wikidata Query Service returns empty for entity search

227 views Asked by At

I used to run the following example taken from the MWAPI page with no problem. However, I tried it today and Yesterday and noticed that no matter what entity you search for, the result is always empty. Does anyone else have the same problem? Any solutions?

SELECT * WHERE {
  SERVICE wikibase:mwapi {
      bd:serviceParam wikibase:endpoint "www.wikidata.org";
                      wikibase:api "EntitySearch";
                      mwapi:search "cheese";
                      mwapi:language "en".
      ?item wikibase:apiOutputItem mwapi:item.
      ?num wikibase:apiOrdinal true.
  }
  ?item (wdt:P279|wdt:P31) ?type
} ORDER BY ASC(?num) LIMIT 20
1

There are 1 answers

0
Vistas On BEST ANSWER

Ok, it turns out (thanks to the response from @UninformedUser ) that clearing the browser cache does the trick. Apparently, the WDQS went under some maintenance and that's when I executed my first query which returned empty. All subsequent efforts to run the query resulted in returning the cached status/data which was of course an empty set. Clearing the cache therefore allows you to query the WDQS afresh.