query-d7d94255424606136636c357df949a55
Paintings by Kandinsky without image SELECT ?item ?itemLabel ?placeLabel ?image WHERE { ?item wdt:P31 wd:Q3305213. ?item wdt:P170 wd:Q61064. OPTIONAL { ?item wdt:P18 ?image. } OPTIONAL { ?item wdt:P276 ?place. } 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
SELECT ?item ?itemLabel ?placeLabel ?image
WHERE {
?item wdt:P31 wd:Q3305213.
?item wdt:P170 wd:Q61064.
OPTIONAL { ?item wdt:P18 ?image. }
OPTIONAL { ?item wdt:P276 ?place. }
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
v3("?place")
c2(["wd:Q3305213"]):::iri
c8(["bd:serviceParam"]):::iri
c4(["wd:Q61064"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["not bound(?image)"]]
f0 --> v1
v2 --"wdt:P31"--> c2
v2 --"wdt:P170"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P18".-> v1
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P276".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end