query-d55b4c95a85a60b3c370299030cf4727

rq turtle/ttl

Pigsonthewing Self portraits with artist, but not 'depicts'

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?artist ?artistLabel
WHERE 
{
  ?item wdt:P31/wdt:P279* wd:Q3305213.     #must have instance of painting or subclass thereof
  ?item wdt:P136 wd:Q192110.               #must have genre is self-portrait
  filter not exists {?item wdt:P180 [] . } #depicts is absent
  ?item wdt:P170 ?artist .                 #must have artist
  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; v2("?artist"):::projected v1("?item"):::projected a1((" ")) a2((" ")) c4(["wd:Q3305213"]):::iri c9(["bd:serviceParam"]):::iri c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal c6(["wd:Q192110"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P180"--> e0a1 e0v1("?item"):::projected e0a1((" ")):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> c1 f0 --> a1 v1 --"wdt:P180"--> a1 v1 --"wdt:P31"--> a2 a2 --"wdt:P279"--> c4 v1 --"wdt:P136"--> c6 v1 --"wdt:P170"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end