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 current N3 parser doesn't handle empty Notation3 graph terms well:
This Notation3 document:
@prefix : <urn:example:> . @prefix log: <http://www.w3.org/2000/10/swap/log#> . () log:onNegativeSurface { } .
is parsed as:
[ Quad { id: '', _subject: NamedNode { id: 'http://www.w3.org/1999/02/22-rdf-syntax-ns#nil' }, _predicate: null, _object: null, _graph: BlankNode { id: '_:n3-72' } }, Quad { id: '', _subject: NamedNode { id: 'http://www.w3.org/1999/02/22-rdf-syntax-ns#nil' }, _predicate: NamedNode { id: 'http://www.w3.org/2000/10/swap/log#onNegativeSurface' }, _object: BlankNode { id: '_:n3-72' }, _graph: DefaultGraph { id: '' } } ]
See also: jeswr/pretty-turtle#45
The text was updated successfully, but these errors were encountered:
Also see rdfjs/types#37 regarding the handling of empty graph terms.
Sorry, something went wrong.
No branches or pull requests
The current N3 parser doesn't handle empty Notation3 graph terms well:
This Notation3 document:
is parsed as:
See also: jeswr/pretty-turtle#45
The text was updated successfully, but these errors were encountered: