|
I want to serialise resources individually with Jena. I've retrieved a list of resources of the type
With the album only represented by its URI. I would like all of the details about album to be included in this serialisation, like so:
How can I do this for an individual resource? |
|
I'm no expert on the Jena API, but I assume you can simply fire a SPARQL CONSTRUCT query and treat/process the result as a new Model. The following SPARQL query will give you back all artists, their album, and all the properties of each album:
If you want to do this for an invidual artist, replace |

