This content has been marked as final.
Show 3 replies
-
1. Re: Retrieve triples accessed by Jena Arq
alwu-Oracle Dec 8, 2011 9:57 PM (in response to 904332)Hi,
Perhaps in addition to the SPARQL SELECT query, you can run the following SPARQL construct query?
construct {
? city <http://dbpedia.org/property/subdivisionName> <http://dbpedia.org/resource/Brazil>.
? city <http://dbpedia.org/property/latd>? latd.
}
where {
? city <http://dbpedia.org/property/subdivisionName> <http://dbpedia.org/resource/Brazil>.
? city <http://dbpedia.org/property/latd>? latd.
}
Thanks,
Zhe Wu -
2. Re: Retrieve triples accessed by Jena Arq
913619 Jan 27, 2012 10:27 AM (in response to alwu-Oracle)I have the same issue. Did the construct query resolve do what your wanted ? -
3. Re: Retrieve triples accessed by Jena Arq
alwu-Oracle Jan 27, 2012 4:50 PM (in response to 913619)Yes, I think so :) Give it a try.
Zhe Wu