query-255e61f25819bc6920263bc138860d81
Music band labelHi, I try to query all the music bands publishing their work on the "Sarah records" label (Q3473424). I find bands but my query does not seems to work. I try : https://www.wikidata.org/wiki/Q536403A band which match :
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?band ?bandLabel
WHERE
{
?band wdt:P31 wd:Q5741069 .
?band rdfs:label ?bandLabel .
?band wdt:P264 wd:Q3473424 .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?band"):::projected
v2("?bandLabel"):::projected
c5(["wd:Q3473424"]):::iri
c2(["wd:Q5741069"]):::iri
v1 --"wdt:P31"--> c2
v1 --"rdfs:label"--> v2
v1 --"wdt:P264"--> c5