Your problem is that simple literals with language tags are: "Chalti Ka Naam Gaadi"@en
is not the same as simple literals without language tags: "Chalti Ka Naam Gaadi"
Literals are structured things made from the lexical part, language (maybe) or data type (maybe).
You can filter: FILTER ( str( ?name ) = "Chalti Ka Naam Gaadi")
( str()returns the lexical part of the literal)
but depending on the request mechanism, this will be much slower.
source
share