query-1b1bbd4ab8dbf79a57e2792aad2893d4

rq turtle/ttl

Introduction). Helmet Music Challenge 2023 (e.g. Helsinki Metropolitan Area LibrariesThis page contains SPARQL queries that answers the prompts mentioned in the challenges organized by The Wikidata items of the challenges can be listed with the following query.

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:Tree
SELECT
  ?challengeClass
  ?challengeClassLabel
  ?challenge
  ?challengeLabel
{
  ?challenge wdt:P31 ?challengeClass.
  ?challengeClass
    wdt:P279 wd:Q116145346;
    wdt:P664 wd:Q11861998.
  SERVICE wikibase:label {bd:serviceParam wikibase:language "en"}.
}
ORDER BY
  ASC(?challengeClassLabel)
  ASC(?challengeLabel)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?challenge"):::projected v4("?challengeClass"):::projected v1("?challengeClassLabel"):::projected v2("?challengeLabel"):::projected c7(["bd:serviceParam"]):::iri c3(["wd:Q116145346"]):::iri c5(["wd:Q11861998"]):::iri c9(["en"]):::literal v3 --"wdt:P31"--> v4 v4 --"wdt:P279"--> c3 v4 --"wdt:P664"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end