query-1b7104c6127510e08d11e9a05503a68e

rq turtle/ttl

Image gallery of oil paintings from Rijksmuseum

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:Q190804 ;  # in collection Rijksmuseum
       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],mul,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((" ")) c3(["wd:Q3305213"]):::iri c11(["bd:serviceParam"]):::iri c8(["wd:Q296955"]):::iri c5(["wd:Q190804"]):::iri c13(["#91;AUTO_LANGUAGE#93;,mul,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