I want to obtain a list of "is [property] of" items.
For example, Barack Obama on DBPedia has both "successor" as property and "is successor of" properties (with different successors!).
The first I can get with the following SPARQL query:
PREFIX ont: <http://dbpedia.org/ontology/>
PREFIX obama: <http://dbpedia.org/resource/Barack_Obama>
SELECT ?successor
WHERE{
obama: ont:successor ?successor
}
How, can I get the list of items that satisfy "is successor of" criteria?