query-d3c231370037801bf31c51a9fa8a5d40

rq turtle/ttl

(incomplete list, as of 7.4.21) Coding da VinciParticipating GLAM institutions in the German cultural data hackathon,

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#>
SELECT DISTINCT ?GLAM ?GLAMLabel
WHERE 
{
  ?event wdt:P179 wd:Q51845238.              # event is in the series coding da vinci
  ?event wdt:P710 ?GLAM.                     # event has participating institution

  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?GLAM"):::projected v1("?event") c7(["#91;AUTO_LANGUAGE#93;,de"]):::literal c5(["bd:serviceParam"]):::iri c2(["wd:Q51845238"]):::iri v1 --"wdt:P179"--> c2 v1 --"wdt:P710"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end