query-630911ffe7180a115c2c6bd9ecc8007e

rq turtle/ttl

Can you use the Query Service to find items with no P31? 01:12, 17 March 2017 (UTC) (My Contribs) (talk) PokestarFanSelf-explanatory. 08:27, 17 March 2017 (UTC)) talk (SycedI would have said the following. But it does not seem to work as expected, indeed...

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?item
WHERE
{
    MINUS{
      ?item wdt:P31 ?type.
    }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?type") subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P31"--> v2 end