query-1a280d9c9818b18c1f932dc735be6f38
title:Query per elementi senza etichetta in italiano SELECT ?item ?itemLabel ?label WHERE { ?item wdt:P106 wd:Q13418253. MINUS { ?item rdfs:label ?label . FILTER(LANG(?label) = 'it') } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Query per elementi senza etichetta in italiano
SELECT ?item ?itemLabel ?label
WHERE {
?item wdt:P106 wd:Q13418253.
MINUS { ?item rdfs:label ?label . FILTER(LANG(?label) = 'it') }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?label"):::projected
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q13418253"]):::iri
v1 --"wdt:P106"--> c2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
f1[["?label = 'it'"]]
f1 --> v2
v1 --"rdfs:label"--> v2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end