For fuseki, how do I download all RDF triples from a sparql endpoint (if RDF triples are a lot) ? #1536
Answered
by
afs
chenkuncloud
asked this question in
Q&A
-
For fuseki, how do I download all RDF triples from a sparql endpoint (if RDF triples are a lot) ? |
Beta Was this translation helpful? Give feedback.
Answered by
afs
Sep 16, 2022
Replies: 2 comments
-
If you do an HTTP GET request to the dataset URL, with Content-Type application/n-quads then the server will stream the N-Quads. The configuration needs to have operation "gsp-r" or "gsp-rw" on the dataset URL - which is the case in the default configuration. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
chenkuncloud
-
Thank you very much for your reply ! Best Regards |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you do an HTTP GET request to the dataset URL, with Content-Type application/n-quads then the server will stream the N-Quads.
The configuration needs to have operation "gsp-r" or "gsp-rw" on the dataset URL - which is the case in the default configuration.