query-d4ac566cde311fbc284fee840fe983e3

rq turtle/ttl

Ashmolean things named "Figure of " but with no depiction propertyAlso includes "Standing figure of...", "Seated figure of..."

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?itemLabel ?url WHERE {
?item wdt:P195 wd:Q636400; wdt:P973 ?url
MINUS {?item wdt:P180 []}
?item rdfs:label ?itemLabel filter( lang(?itemLabel)="en" ) filter( CONTAINS(?itemLabel, "igure of ") )
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?itemLabel"):::projected v3("?url"):::projected a1((" ")) c4(["wd:Q636400"]):::iri f0[["contains(?itemLabel,'igure of ')"]] f0 --> v1 f1[["?itemLabel = 'en'"]] f1 --> v1 v2 --"wdt:P195"--> c4 v2 --"wdt:P973"--> v3 subgraph minus2["MINUS"] style minus2 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P180"--> a1 end v2 --"rdfs:label"--> v1