Basically I have a query show below which works efficiently, however I want my search to be more precise where the label is the actual string 'yago' rather than contains the string 'yago'. I want to try to do it without filters if possible as I think using FILTER makes querying dbpedia longer.
SELECT ?uri ?label
WHERE {
?uri rdfs:label ?label.
?label bif:contains "'yago'" .
}