query-6413ca97959bb95d5b3197738c89446c
People with a CBDB ID but no country
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?wd ?cbdb WHERE {
?wd wdt:P497 ?cbdb.
MINUS {?wd wdt:P27 ?country. FILTER (?country != wd:Q29520 ) } # no country or country set as China
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?cbdb"):::projected
v3("?country")
v1("?wd"):::projected
v1 --"wdt:P497"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
f1[["?country != 'wd:Q29520'"]]
f1 --> v3
v1 --"wdt:P27"--> v3
end