query-42a7595ab08651a9acb88fc35c112372
People connected to Coventry with a sitelink but no English Wikipedia article
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 ?personDescription ?sitelink WHERE {
?person ?prop wd:Q6225; wdt:P31 wd:Q5.
?sitelink schema:about ?person
MINUS {?enwiki schema:about ?person; schema:isPartOf <https://en.wikipedia.org/> }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} ORDER BY ?personLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?enwiki")
v2("?person"):::projected
v1("?personLabel"):::projected
v3("?prop")
v4("?sitelink"):::projected
c6([https://en.wikipedia.org/]):::iri
c8(["bd:serviceParam"]):::iri
c3(["wd:Q5"]):::iri
c1(["wd:Q6225"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 -->v3--> c1
v2 --"wdt:P31"--> c3
v4 --"schema:about"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v5 --"schema:about"--> v2
v5 --"schema:isPartOf"--> c6
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end