query-843d706857a16a89858d09c755e7ae75
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 DISTINCT ?item ?itemLabel ?page1 WHERE {
?item wdt:P131 wd:Q647 . #things located in Rennes
?page1 schema:about ?item .
?page1 schema:isPartOf <https://en.wikipedia.org/> . #with articles on en.wikipedia.org
MINUS { #without article on de.wikipedia.org
?page2 schema:about ?item .
?page2 schema:isPartOf <https://de.wikipedia.org/> .
}
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("?item"):::projected
v2("?page1"):::projected
v3("?page2")
c6([https://de.wikipedia.org/]):::iri
c5([https://en.wikipedia.org/]):::iri
c8(["bd:serviceParam"]):::iri
c2(["wd:Q647"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P131"--> c2
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c5
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v3 --"schema:about"--> v1
v3 --"schema:isPartOf"--> c6
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end