query-bcc4e243b2c957a0a7f010e480171975
Articles sur des humains de en sans page fr PREFIX schema: http://schema.org/ PREFIX wd: http://www.wikidata.org/entity/ PREFIX wdt: http://www.wikidata.org/prop/direct/ SELECT * WHERE { ?q wdt:P31/wdt:P279* wd:Q5 . ?pageEN schema:about ?q ; schema:isPartOf https://en.wikipedia.org/ . MINUS { ?pageFR schema:about ?q ; schema:isPartOf https://fr.wikipedia.org/ . } }
Use at
- https://query.wikidata.org/sparql
#Articles sur des humains de en sans page fr
PREFIX schema: <http://schema.org/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT * WHERE {
?q wdt:P31/wdt:P279* wd:Q5 .
?pageEN schema:about ?q ;
schema:isPartOf <https://en.wikipedia.org/> .
MINUS {
?pageFR schema:about ?q ;
schema:isPartOf <https://fr.wikipedia.org/> .
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?pageEN"):::projected
v3("?pageFR"):::projected
v1("?q"):::projected
a1((" "))
c6([https://en.wikipedia.org/]):::iri
c3(["wd:Q5"]):::iri
c7([https://fr.wikipedia.org/]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c6
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v3 --"schema:about"--> v1
v3 --"schema:isPartOf"--> c7
end