query-36477eccdadc93dba6a7707309d241c7
Femmes portraitisées dans Libé sans article sur fr.wp
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 ?person ?personLabel ?occupationLabel WHERE
{
?article wdt:P921 ?person.
?article wdt:P361 wd:Q30091381 .
?person wdt:P21 wd:Q6581072 .
?person wdt:P106 ?occupation
MINUS { ?frArticle schema:about ?person; schema:isPartOf <https://fr.wikipedia.org/>. } # No article on pt.wiki
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?article")
v4("?frArticle")
v3("?occupation")
v2("?person"):::projected
c9([https://fr.wikipedia.org/]):::iri
c13(["#91;AUTO_LANGUAGE#93;,fr,en"]):::literal
c3(["wd:Q30091381"]):::iri
c5(["wd:Q6581072"]):::iri
c11(["bd:serviceParam"]):::iri
v1 --"wdt:P921"--> v2
v1 --"wdt:P361"--> c3
v2 --"wdt:P21"--> c5
v2 --"wdt:P106"--> v3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v4 --"schema:about"--> v2
v4 --"schema:isPartOf"--> c9
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c11 --"wikibase:language"--> c13
end