Skip to content
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

application/n-triples MIME-Type is not supported for CONSTRUCT queries #1173

Open
aindlq opened this issue Dec 6, 2023 · 0 comments
Open

Comments

@aindlq
Copy link

aindlq commented Dec 6, 2023

Did not find any supported media type in this 'Accept:' header field: "application/n-triples;q=0.7, text/plain;q=0.7". Currently the following media types are supported: application/sparql-results+json, application/sparql-results+xml, application/qlever-results+json, text/tab-separated-values, text/csv, text/turtle, application/octet-stream

From quick look it seems that produced Turtle is equals to NTriples format -

for (const auto& triple : generator) {
co_yield triple._subject;
co_yield ' ';
co_yield triple._predicate;
co_yield ' ';

So text/turtle actually gives NTriples.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant