I have written a query on DBpedia.
SELECT * WHERE {
<http://dbpedia.org/resource/London> ?p ?o.
FILTER (langMatches(lang(?x),"en"))
}
And I want to load the results in a Jena model so that I can make queries on them later. How can I do that?
I have checked this answer. But this is not working or maybe I am not getting it properly. Would someone explain it with proper examples?