query-b0772f3eb54d887888901d02acf171c4

rq turtle/ttl

Gallery of all plates in all volumes

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#>
# Gallery of all plates in all volumes of FB
#defaultView:ImageGrid
SELECT DISTINCT ?plate ?plateLabel ?plateDescription ?plateImage ?volumeLabel
WHERE 
{
  wd:Q117860156 wdt:P527 ?volume.
  ?volume wdt:P527 ?plate.
   ?plate wdt:P18 ?plateImage
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } 
}
ORDER BY  ?plateLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?plate"):::projected v4("?plateImage"):::projected v1("?plateLabel"):::projected v2("?volume") c5(["bd:serviceParam"]):::iri c1(["wd:Q117860156"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal c1 --"wdt:P527"--> v2 v2 --"wdt:P527"--> v3 v3 --"wdt:P18"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end