query-d8d306a12d779702632d05762142ac36

rq turtle/ttl

Songs on Spotify

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?spotify WHERE {
  ?item wdt:P2207 ?spotify .
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en,de" .
  }
} ORDER BY ?spotify

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?spotify"):::projected c3(["bd:serviceParam"]):::iri c5(["en,de"]):::literal v2 --"wdt:P2207"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end