Assuming I am searching for an entity such as "Wizard of Oz" and know I am specifically interested in the book rather then movie or musical. Which query/method will return correct results on most cases?

link|improve this question

72% accept rate
feedback

2 Answers

You can do that with a query like:

SELECT * WHERE {
  ?s <http://dbpedia.org/property/name> ?name .
  ?s a <http://dbpedia.org/ontology/Book> .
  FILTER(regex(STR(?name), "wizard of oz", "i"))
}
link|improve this answer
Thanks for replying, I am trying to search for "Book" without a specific ontological relatedness so it will also catch entities in the "Childrens_Books" category for example. – user971956 Dec 16 '11 at 13:52
Sure they could...to see it timing out though, unless it's run against a private instance... – emaster70 Dec 21 '11 at 11:50
feedback

You can also do that with DBpedia Lookup:

http://lookup.dbpedia.org/api/search.asmx/KeywordSearch?QueryClass=book&QueryString=wizard+of+oz

Or with DBpedia Spotlight:

http://spotlight.dbpedia.org/rest/candidates?text=wizard+of+oz+book

link|improve this answer
The results for the second link mostly contain the musical, then the film/TV show and nothing about the book... – user971956 May 23 at 20:23
feedback

Your Answer

 
or
required, but never shown

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