query-0dd3f266e227221ff8c071a40fa890d2

rq turtle/ttl

Plates in Volume 1 SELECT DISTINCT ?plate ?plateLabel ?plateDescription ?plateImage WHERE { wd:Q118248037 wdt:P527 ?plate. ?plate wdt:P18 ?plateImage SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY ?plateLabel

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#>
# Plates in Volume 1 
SELECT DISTINCT ?plate ?plateLabel ?plateDescription ?plateImage
WHERE 
{
  wd:Q118248037 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; v2("?plate"):::projected v3("?plateImage"):::projected v1("?plateLabel"):::projected c1(["wd:Q118248037"]):::iri c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal c1 --"wdt:P527"--> v2 v2 --"wdt:P18"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end