query-3cceec99418e91a1dd13d1f11f259412
TODO
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/>
SELECT ?item {
?item wdt:P31 wd:Q13100073 .
MINUS {
?item schema:description ?desc .
FILTER ( LANG ( ?desc ) = 'en' ) .
} .
} LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?desc")
v1("?item"):::projected
c2(["wd:Q13100073"]):::iri
v1 --"wdt:P31"--> c2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
f1[["?desc = 'en'"]]
f1 --> v2
v1 --"schema:description"--> v2
end