query-e4cecbb7e1b25a6f935a6db31a912035
Tous les établissements humains+ en Inde qui n'ont pas de description en anglais SELECT DISTINCT ?item WHERE { ?item wdt:P31/wdt:P279* wd:Q486972 . ?item wdt:P17 wd:Q668 . MINUS { ?item schema:description ?itemDescription filter(lang(?itemDescription)="en") .} }
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/>
#Tous les établissements humains+ en Inde qui n'ont pas de description en anglais
SELECT DISTINCT ?item
WHERE
{
?item wdt:P31/wdt:P279* wd:Q486972 .
?item wdt:P17 wd:Q668 .
MINUS { ?item schema:description ?itemDescription filter(lang(?itemDescription)="en") .}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?itemDescription")
a1((" "))
c3(["wd:Q486972"]):::iri
c5(["wd:Q668"]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P17"--> c5
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
f1[["?itemDescription = 'en'"]]
f1 --> v2
v1 --"schema:description"--> v2
end