I am trying to get the resource describing country Romania by the country name with this query:

PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX : <http://dbpedia.org/resource/>

SELECT DISTINCT ?x WHERE {
     ?x foaf:name 'Romania'
}

But it does not retrieve anything. How can I get resource http://dbpedia.org/resource/Romania (:Romania) by the string 'Romania'.

If a want to retrieve the name of the country by the country resource I use the following query which work fine:

PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX : <http://dbpedia.org/resource/>

SELECT DISTINCT ?x WHERE {
     :Romania foaf:name ?x
}
link|improve this question
feedback

1 Answer

This ought to do it:

SELECT ?c
WHERE {
  ?c a dbpedia-owl:Country ;
  foaf:name "Romania"@en .
  FILTER NOT EXISTS {?c dbpedia-owl:dissolutionYear ?y}
}

The critical quirk here is that "Romania" with no language tag is different from "Romania"@en. And then you also have a bunch of historical states that were also called Romania, so we filter out any of those that have years of dissolution. DBpedia's data-completeness for years of dissolution isn't terrific, but all the Romanian ones, at least, are marked...

link|improve this answer
Thank you! It worked. – Calin Burloiu May 8 '11 at 15:42
Cool! (You should mark the answer as accepted, to show that.) – glenn mcdonald May 8 '11 at 20:41
feedback

Your Answer

 
or
required, but never shown

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