query-a7caac93eb1c56e917b68efda720a1b7
Actrices sans description en français
added before 2016-10
SELECT DISTINCT ?item ?itemLabel WHERE { ?item wdt:P106 wd:Q33999 . ?item wdt:P21 wd:Q6581072 . OPTIONAL { ?item schema:description ?itemDescription } FILTER(LANG(?itemDescription) IN ("fr")). FILTER (!BOUND(?itemDescription)) ?item wdt:P31 wd:Q5 . SERVICE wikibase:label { bd:serviceParam wikibase:language "fr"} } LIMIT 1000
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#>
#Actrices sans description en français
#added before 2016-10
SELECT DISTINCT ?item ?itemLabel
WHERE
{
?item wdt:P106 wd:Q33999 .
?item wdt:P21 wd:Q6581072 .
OPTIONAL { ?item schema:description ?itemDescription }
FILTER(LANG(?itemDescription) IN ("fr")).
FILTER (!BOUND(?itemDescription))
?item wdt:P31 wd:Q5 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr"}
}
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemDescription")
c10(["bd:serviceParam"]):::iri
c8(["wd:Q5"]):::iri
c5(["wd:Q6581072"]):::iri
c1(["fr"]):::literal
c3(["wd:Q33999"]):::iri
f0[["not bound(?itemDescription)"]]
f0 --> v1
f1[["?itemDescription = 'fr'"]]
f1 --> v1
v2 --"wdt:P106"--> c3
v2 --"wdt:P21"--> c5
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."schema:description".-> v1
end
v2 --"wdt:P31"--> c8
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c1
end