query-8f1c006749337e7017b056a958560c28

rq turtle/ttl

Image gallery of paintings from Kenwood House

Use at

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#>
#defaultView:ImageGrid
SELECT DISTINCT ?painting ?paintingLabel ?painterLabel ?image where {
      ?painting wdt:P31/wdt:P279* wd:Q3305213 ;  # any painting (or type of painting)
       wdt:P195 wd:Q764804 ;  # in collection Kenwood House
       wdt:P170 ?painter ; # get painter
       wdt:P186 wd:Q296955 ; # Made with oil paint
       wdt:P18 ?image . # Image from Commons of the artwork
  SERVICE wikibase:label {
       bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,fr,es"
    }
} LIMIT 160

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?image"):::projected v2("?painter") v1("?painting"):::projected a1((" ")) c5(["wd:Q764804"]):::iri c3(["wd:Q3305213"]):::iri c11(["bd:serviceParam"]):::iri c8(["wd:Q296955"]):::iri c13(["#91;AUTO_LANGUAGE#93;,en,fr,es"]):::literal v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v1 --"wdt:P195"--> c5 v1 --"wdt:P170"--> v2 v1 --"wdt:P186"--> c8 v1 --"wdt:P18"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c11 --"wikibase:language"--> c13 end