-
Notifications
You must be signed in to change notification settings - Fork 66
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
FROM (NAMED) not allowed in SERVICE #85
Comments
Actually not a valid query. Can't find the immediate reason in the spec, but the grammar defines queries and subqueries differently:
It's also not accepted on http://sparql.org/validate/query |
Well that's silly... For reference, this was reported here: https://discuss.rdf.community/t/sparql-engine-for-node-js/37/15?u=rubensworks |
FROM and FROM NAMED are not allowed in subqueries. They need to be set on the outermost level of the query. Now, if the subquery is inside a SERVICE clause, then the outermost SELECT is generated implicitly as part of the service call (as an implicit Sometimes, the same result can be achieved by adding the |
While this is a valid query as far as I know, it is not accepted by the parser:
Error:
Also for
FROM NAMED
:The text was updated successfully, but these errors were encountered: