query-eaea45ca6b22b07098edad64da2a615e

rq turtle/ttl

statements: (P6379)has works in the collection The missing

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT ?creator ?collection WHERE {
  ?painting wdt:P31 wd:Q3305213 . 
  ?painting wdt:P195 ?collection .
  ?painting wdt:P170 ?creator .
  MINUS { ?creator wdt:P6379 ?collection } . 
  } ORDER BY ?creator ?collection

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?collection"):::projected v1("?creator"):::projected v3("?painting") c2(["wd:Q3305213"]):::iri v3 --"wdt:P31"--> c2 v3 --"wdt:P195"--> v2 v3 --"wdt:P170"--> v1 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P6379"--> v2 end