I send a query as below. Without filter, I got responses and in the response, I checked the values are there. but with the filter statement, I failed to get query. What's wrong with my query? P1813 property type is a Monolingual text, so I used the filter statement as below.
SELECT DISTINCT ?i ?iLabel ?v1
WHERE {
?i wdt:P31 wd:Q7603.
?i wdt:P1813 ?v1.
FILTER(?v1 = "GNU AGPL"@en) #commenting out this statement, I got responses.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,[AUTO_LANGUAGE]". }
}
LIMIT 100