query-64c4d875c928553c6f7e50721aac8cb4
Paintings by Kandinsky without image at the Solomon R. Guggenheim Museum SELECT ?item ?itemLabel ?image WHERE { ?item wdt:P31 wd:Q3305213. ?item wdt:P170 wd:Q61064. ?item wdt:P276 wd:Q201469. OPTIONAL { ?item wdt:P18 ?image. } FILTER (!bound(?image)) SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }
Use at
- https://query.wikidata.org/sparql
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#>
#Paintings by Kandinsky without image at the Solomon R. Guggenheim Museum
SELECT ?item ?itemLabel ?image
WHERE {
?item wdt:P31 wd:Q3305213.
?item wdt:P170 wd:Q61064.
?item wdt:P276 wd:Q201469.
OPTIONAL { ?item wdt:P18 ?image. }
FILTER (!bound(?image))
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;
v1("?image"):::projected
v2("?item"):::projected
c2(["wd:Q3305213"]):::iri
c9(["bd:serviceParam"]):::iri
c4(["wd:Q61064"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c6(["wd:Q201469"]):::iri
f0[["not bound(?image)"]]
f0 --> v1
v2 --"wdt:P31"--> c2
v2 --"wdt:P170"--> c4
v2 --"wdt:P276"--> c6
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P18".-> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end