I want to find all the reruns of a specific production using a string in the query. I do not get any results. This is the query I am trying:
SELECT ?item ?label
WHERE {
?item wdt:P5935 ?id;
rdfs:label ?label.
FILTER(LANG(?label) = "[AUTO_LANGUAGE]").
FILTER(STRSTARTS(?label, "Der Ring des Nibelungen: Die Walküre")).
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],nl,en". }
}
Does anyone know how to form queries using a string from the label?