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'" .
}
link|improve this question

75% accept rate
feedback

1 Answer

You can try doing the following if you want to do it without filters:

SELECT ?uri ?label
WHERE {
?uri rdfs:label "Yago"@en .
?uri rdfs:label ?label
}

I not sure though it if it is much faster than the corresponding query with filters:

SELECT ?uri ?label
WHERE {
?uri rdfs:label ?label .
filter(?label="Yago"@en)
}
link|improve this answer
I believe your first query has the triple pattern duplicated. – msalvadores Jan 21 at 1:57
thanks the second query is more efficient no duplication – Sam Jan 21 at 16:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.