query-9066ac557c4803287cd409a14fcf8146
paintings without image but with a sitelink to commons
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?item ?commonsSitelink
{
?item wdt:P31 wd:Q3305213 .
?commonsSitelink schema:about ?item .
FILTER(STRSTARTS(STR(?commonsSitelink), "https://commons.wikimedia.org/wiki/Category"))
MINUS{ ?item wdt:P18 [] . }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?commonsSitelink"):::projected
v2("?item"):::projected
a1((" "))
c3(["wd:Q3305213"]):::iri
f0[["starts-with(str(?commonsSitelink),'https://commons.wikimedia.org/wiki/Category')"]]
f0 --> v1
v2 --"wdt:P31"--> c3
v1 --"schema:about"--> v2
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P18"--> a1
end