query-0620265522d2b08c61e86b2906766bcc
TODO
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 ?articleFr ?item ?itemLabel ?some ?someLabel WHERE {
{
SELECT * WHERE {
?articleFr schema:about ?item;
wikibase:badge ?some;
schema:isPartOf <https://fr.wikipedia.org/>.
OPTIONAL {
?articleEn schema:about ?item;
schema:isPartOf <https://en.wikipedia.org/>.
}
FILTER(!(BOUND(?articleEn)))
MINUS { ?item wdt:P31 wd:Q4663903. }
}
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?articleEn")
v2("?articleFr"):::projected
v3("?item"):::projected
v4("?some"):::projected
c5([https://en.wikipedia.org/]):::iri
c7(["wd:Q4663903"]):::iri
c9(["bd:serviceParam"]):::iri
c4([https://fr.wikipedia.org/]):::iri
c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["not bound(?articleEn)"]]
f0 --> v1
v2 --"schema:about"--> v3
v2 --"wikibase:badge"--> v4
v2 --"schema:isPartOf"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."schema:about".-> v3
v1 --"schema:isPartOf"--> c5
end
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v3 --"wdt:P31"--> c7
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end