We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The SPARQL parser fails a FILTER with a trailing dot if it follows a group
FILTER
ASK { { } FILTER(true) . }
with an RdfParseException in SparqlQueryParser.TryParseGraphPattern@1309:
RdfParseException
SparqlQueryParser.TryParseGraphPattern
[DotToken at Line 5 Column 18 to Line 5 Column 19] Unexpected Token encountered, expected the start of a Graph Pattern
The grammar allows an optional dot after a GraphPatternNotTriples (which includes FILTER).
GraphPatternNotTriples
A real example can be found in the SHACL Test Suite:
The text was updated successfully, but these errors were encountered:
Reproduces dotnetrdf#237.
5808a5d
Allow an optional DOT token after non-triple patterns in a graph pattern
842c06a
Fixes #237
c8fb971
Merges master, removes woraround for dotnetrdf#237 fixed by dotnetrdf…
9f7a6d6
…#245.
No branches or pull requests
The SPARQL parser fails a
FILTER
with a trailing dot if it follows a groupwith an
RdfParseException
inSparqlQueryParser.TryParseGraphPattern
@1309:The grammar allows an optional dot after a
GraphPatternNotTriples
(which includesFILTER
).A real example can be found in the SHACL Test Suite:
The text was updated successfully, but these errors were encountered: