query-7a0a6cd1c9b805948b97da2dd80087a1
Streeton paintings
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 ?painting ?paintingLabel ?image ?collection ?collectionLabel
?genreLabel
WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
# ?painting wdt:P31 wd:Q3305213. # instance of painting
?painting wdt:P31/wdt:P279* wd:Q4502142. # instance or subclass of visual artwork
?painting wdt:P170 wd:Q709280. # creator Arthur Streeton
OPTIONAL { ?painting wdt:P18 ?image. }
OPTIONAL { ?painting wdt:P195 ?collection. }
OPTIONAL { ?painting wdt:P136 ?genre. }
?painting wdt:P195 wd:Q7270900.
}
LIMIT 500
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?collection"):::projected
v4("?genre")
v2("?image"):::projected
v1("?painting"):::projected
a1((" "))
c13(["wd:Q7270900"]):::iri
c7(["wd:Q4502142"]):::iri
c2(["bd:serviceParam"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c9(["wd:Q709280"]):::iri
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c7
v1 --"wdt:P170"--> c9
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P195".-> v3
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P136".-> v4
end
v1 --"wdt:P195"--> c13