query-0e0a0f16b49855a7d840afaddcead9d9

rq turtle/ttl

Propertiesinstance of (P31)country of citizenship (P27)image (P18)

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT ?item WHERE {
  ?item wdt:P31 wd:Q5.
  ?item wdt:P27 wd:Q31.
MINUS {?item wdt:P18 []. }
 }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected a1((" ")) c2(["wd:Q5"]):::iri c4(["wd:Q31"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P27"--> c4 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P18"--> a1 end