query-ce82f0f4e4513f8db3e971d3850860e2
Femmes nées dans le Puy-de-Dôme sans avoir d'article en francais
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 ?linkcount
WHERE {
# personne née dans une ville du Puy-de-Dôme
?item wdt:P31 wd:Q5 ;
# enchaine les propriétés
wdt:P19 [ wdt:P131 wd:Q12694 ] .
?item wdt:P21 wd:Q6581072 .
# retire les items avec un lien en francais
MINUS {
?link schema:about ?item;
schema:inLanguage "fr".
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr,en". }
OPTIONAL {?item wikibase:sitelinks ?linkcount .} # count of sitelinks
}
ORDER BY DESC(?linkcount) ?item
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v3("?link")
v1("?linkcount"):::projected
a1((" "))
c7(["wd:Q6581072"]):::iri
c10(["fr"]):::literal
c4(["wd:Q12694"]):::iri
c12(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c14(["fr,en"]):::literal
v2 --"wdt:P31"--> c2
a1 --"wdt:P131"--> c4
v2 --"wdt:P19"--> a1
v2 --"wdt:P21"--> c7
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v3 --"schema:about"--> v2
v3 --"schema:inLanguage"--> c10
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c12 --"wikibase:language"--> c14
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wikibase:sitelinks".-> v1
end