query-04f4ba6dc54027ff095713324f13e240
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?sitelink ?itemLabel WHERE {
?sitelink schema:isPartOf <https://en.wikipedia.org/>;
schema:about ?item;
wikibase:badge wd:Q17437796.
MINUS { ?deArticle schema:about ?item; schema:isPartOf <https://de.wikipedia.org/>. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" } .
}
ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?deArticle")
v3("?item")
v1("?itemLabel"):::projected
v2("?sitelink"):::projected
c6([https://de.wikipedia.org/]):::iri
c2([https://en.wikipedia.org/]):::iri
c8(["bd:serviceParam"]):::iri
c10(["de,en"]):::literal
c5(["wd:Q17437796"]):::iri
v2 --"schema:isPartOf"--> c2
v2 --"schema:about"--> v3
v2 --"wikibase:badge"--> c5
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v4 --"schema:about"--> v3
v4 --"schema:isPartOf"--> c6
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end