query-6c58a992ee8f861d8a85bdac830125a7
Images
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:ImageGrid
PREFIX target: <http://www.wikidata.org/entity/Q189358>
SELECT
?image
?depiction ?depictionLabel
WHERE {
?artwork wdt:P180 target: ;
wdt:P18 ?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("?artwork")
v2("?image"):::projected
c2([http://www.wikidata.org/entity/Q189358]):::iri
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P180"--> c2
v1 --"wdt:P18"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end