query-6ecaec9b48dba9ef1c6a1d1a03917d4d
Tous les livres en anglais qui n'ont pas la propriété "titre" SELECT DISTINCT ?item ?itemLabel WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "en"} ?item wdt:P407 wd:Q1860 ; wdt:P31 wd:Q571 ; MINUS {?item wdt:P1476 [].} }
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 bd: <http://www.bigdata.com/rdf#>
#Tous les livres en anglais qui n'ont pas la propriété "titre"
SELECT DISTINCT ?item ?itemLabel WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "en"}
?item wdt:P407 wd:Q1860 ;
wdt:P31 wd:Q571 ;
MINUS {?item wdt:P1476 [].}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
a1((" "))
c2(["bd:serviceParam"]):::iri
c4(["en"]):::literal
c6(["wd:Q1860"]):::iri
c8(["wd:Q571"]):::iri
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v1 --"wdt:P407"--> c6
v1 --"wdt:P31"--> c8
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P1476"--> a1
end