In Fuseki2, is it possible to request TriX XML (rather than RDF/XML) as a response format (for example when submitting a DESCRIBE query)? I've tried setting the Accept header to "application/trix+xml," but still get back "application/rdf+xml."
Asked
Active
Viewed 94 times
1 Answers
0
SPARQL's DESCRIBE
returns a single graph, but (if I remember correctly) TriX is for named graphs only. As a result I don't think TriX is considered a candidate for serialising the result of a such a query form (and similarly CONSTRUCT
).
(However I will check that)
Having checked I see no mention of TriX in fuseki 2. TriX has never been widely used, so it's not entirely surprising.

user205512
- 8,798
- 29
- 28
-
Thanks. It looks like TriX doesn't actually require named graphs. The `
` child of the ` – tat Jul 02 '15 at 16:56` element is optional. I'm able to upload a TriX file with no graph uri to the default graph in Fuseki. -
Just updated answer. Any particular reason you want TriX? – user205512 Jul 02 '15 at 17:42
-
2It is not part of the server's offer as of the last Fuseki2 release. I'll add it for the next release. – AndyS Jul 02 '15 at 19:18