query-4782805be6779dba2f55c8cfd861aa84
Propertiesinstance of (P31)creator (P170)image (P18)
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#>
SELECT ?item ?itemLabel ?imageLabel #added a Label here
WHERE { ?item wdt:P31 wd:Q3305213 . #instance of paintings,
?item wdt:P170 wd:Q35548 . #creator is Paul Cezanne
?item wdt:P18 ?image
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } #added labelservice here
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?image")
v1("?item"):::projected
c2(["wd:Q3305213"]):::iri
c7(["bd:serviceParam"]):::iri
c4(["wd:Q35548"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P170"--> c4
v1 --"wdt:P18"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end