-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RDF output for SELECT/ASK queries #39
Comments
While this is not usually supported by endpoint, it is useful to hide this property from the user and offer an RDF representation of the result set (select) or boolean (ask) responses. |
Jena has all we need to perform this operation. However I am not 100% sure that this would be the more intuitive way for doing so. Another option would be to serve it as RDF using the CSV vocabulary. |
Here is an example of the output that the Jena library produces for a ResultSet of 5 rows in RDF:
One part I don't like in this representation is that the order of the rows is lost. |
Another candidate is a recent W3C candidate recommendation:
|
About how to implement it, I opened a question to SO as things are not very clear... http://stackoverflow.com/questions/33136916/streaming-a-resultset-as-rdf-using-a-custom-vocabulary |
The reason is to have a uniform support for all APIs, independently from the nature of the query.
The text was updated successfully, but these errors were encountered: