query-3c421732a3d68ba4b8f294cb6047e52e
Personnes sans biographie sur la Wikipédia francophone
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#>
SELECT DISTINCT ?item ?itemLabel
WHERE
{
?item wdt:P166 ?DHC.
?DHC wdt:P279 wd:Q11415564.
?DHC wdt:P17 wd:Q142.
MINUS {
?frArticle schema:about ?item;
schema:isPartOf <https://fr.wikipedia.org/>. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr" }
}
ORDER BY ASC(?item)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?DHC")
v3("?frArticle")
v1("?item"):::projected
c10(["bd:serviceParam"]):::iri
c3(["wd:Q11415564"]):::iri
c8([https://fr.wikipedia.org/]):::iri
c12(["fr"]):::literal
c5(["wd:Q142"]):::iri
v1 --"wdt:P166"--> v2
v2 --"wdt:P279"--> c3
v2 --"wdt:P17"--> c5
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v3 --"schema:about"--> v1
v3 --"schema:isPartOf"--> c8
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end