query-0e436ef392ec2757467a13feb281dd03
title:Persone con almeno un id e senza descrizione in italiano SELECT ?person ?personDescription WHERE { ?person wdt:P8750 ?id . ?person wdt:P31 wd:Q5 . MINUS { ?person schema:description ?itdesc . FILTER(LANG(?description) = "it") } SERVICE wikibase:label { bd:serviceParam wikibase:language "en,de,fr,es". } }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Persone con almeno un id e senza descrizione in italiano
SELECT ?person ?personDescription
WHERE {
?person wdt:P8750 ?id .
?person wdt:P31 wd:Q5 .
MINUS { ?person schema:description ?itdesc . FILTER(LANG(?description) = "it") }
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,de,fr,es". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?description")
v2("?id")
v4("?itdesc")
v1("?person"):::projected
c7(["bd:serviceParam"]):::iri
c3(["wd:Q5"]):::iri
c9(["en,de,fr,es"]):::literal
v1 --"wdt:P8750"--> v2
v1 --"wdt:P31"--> c3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
f1[["?description = 'it'"]]
f1 --> v3
v1 --"schema:description"--> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end