query-c9319d3fdb956cf8fcadbb9a4965c47b
Série télévisée des États-Unis qui contient la description "television series" en anglais, qui n'est pas une téléréalité et qui n'a pas de description en français SELECT DISTINCT ?item ?label WHERE {MINUS {?item (wdt:P136BARREVERTICALEwdt:P31) wd:Q182415.} ?item schema:description "television series"@en. FILTER(LANG(?label) = "en"). OPTIONAL { ?item rdfs:label ?label. ?item wdt:P31 wd:Q5398426 ; wdt:P495 wd:Q30 . FILTER(NOT EXISTS { ?item schema:description ?itemdesc. FILTER(LANG(?itemdesc) = "fr") }) } }
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/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
#Série télévisée des États-Unis qui contient la description "television series" en anglais, qui n'est pas une téléréalité et qui n'a pas de description en français
SELECT DISTINCT ?item ?label
WHERE
{MINUS {?item (wdt:P136BARREVERTICALEwdt:P31) wd:Q182415.}
?item schema:description "television series"@en.
FILTER(LANG(?label) = "en").
OPTIONAL {
?item rdfs:label ?label.
?item wdt:P31 wd:Q5398426 ;
wdt:P495 wd:Q30 .
FILTER(NOT EXISTS {
?item schema:description ?itemdesc.
FILTER(LANG(?itemdesc) = "fr")
})
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item"):::projected
v2("?itemdesc")
v1("?label"):::projected
c5(["wd:Q182415"]):::iri
c9(["wd:Q5398426"]):::iri
c11(["wd:Q30"]):::iri
c6([stelevision series^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal
f0[["?label = 'en'"]]
f0 --> v1
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v3 --"wdt:P136BARREVERTICALEwdt:P31"--> c5
end
v3 --"schema:description"--> c6
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."rdfs:label".-> v1
v3 --"wdt:P31"--> c9
v3 --"wdt:P495"--> c11
end