I wonder using SparQL to express "How is India related to “Indira Gandhi”? (no need to find all existing relationships, but find at least an interesting one)?" under http://dbpedia.org/sparql to explore DBPedia(the RDF-ized version of Wikipedia)
An example query I have:
SELECT ?relationship
WHERE { ?s rdf:type dbo:Country .
?s rdfs:label "India"@en .
?x a dbo:Person .
?x rdfs:label "Indira Gandhi"@en .
?x ?p ?s .
?p rdfs:label ?relationship .
filter lang(?relationship = "en")
}
Is there a better way to solve this?