query-6e318eab576c499ed5ea82ab54e779dd

rq turtle/ttl

web.ashmolean.org items without an Ashmolean Museum ID

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 ?itemDescription ?url WHERE {
?item wdt:P195 wd:Q636400.
?item wdt:P973 ?url FILTER( CONTAINS(STR(?url), "www.ashmolean.org") )
   MINUS {?item wdt:P6610 []}
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("?item"):::projected v1("?url"):::projected a1((" ")) c7(["bd:serviceParam"]):::iri c3(["wd:Q636400"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["contains(str(?url),'www.ashmolean.org')"]] f0 --> v1 v2 --"wdt:P195"--> c3 v2 --"wdt:P973"--> v1 subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P6610"--> a1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end