Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to dbpedia and would like to query the text content of a resource given the title. I have the feeling that this not possible using the public SPARQL endpoint.

Thanks

share|improve this question
maybe you should try more than "feel". The answer is correct :/ – Çağdaş Feb 4 at 13:19
Please be more specific in what you mean by "query the text content", and explain why you feel it isn't possible. – Ben Companjen Mar 27 at 21:44

1 Answer

What do you mean by "text content"?

To query a resource given the title:

select * {
    ?thing <http://www.w3.org/2000/01/rdf-schema#label> "Berlin"@en
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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