I want to make a query ( SPARQL) to select from dbpedia DB:
- the purpose of my query is to get the definition of any given name :
Example : i want to find the definition of name Victor
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
CONSTRUCT { <http://example.org/person#Alice> foaf:description ?x }
FROM <http://example.org/foaf/people>
WHERE { ?x foaf:name ?name }
ORDER BY desc(?name)
LIMIT 10
I Think there's no foaf property called description , so i need the query which return this property