-
Notifications
You must be signed in to change notification settings - Fork 2
GH-236: Symmetric RDF triple terms #238
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
Conversation
3123ee8
to
52f9895
Compare
The preview and the diff are not seeing the (PS After updating the common files, the preview and diff are being recreated.) |
@@ -11717,7 +11717,7 @@ <h3>Grammar</h3> | |||
<td><code>[123] </code></td> | |||
<td><code><span class="doc-ref" id="rTripleTermDataSubject">TripleTermDataSubject</span></code></td> | |||
<td> ::= </td> | |||
<td><code class="gRuleBody"><a href="#riri">iri</a> | <a href="#rRDFLiteral">RDFLiteral</a> | <a href="#rNumericLiteral">NumericLiteral</a> | <a href="#rBooleanLiteral">BooleanLiteral</a></code></td> | |||
<td><code class="gRuleBody"><a href="#riri">iri</a> | <a href="#rRDFLiteral">RDFLiteral</a> | <a href="#rNumericLiteral">NumericLiteral</a> | <a href="#rBooleanLiteral">BooleanLiteral</a> | <a href="#rTripleTermData">TripleTermData</a></code></td> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TripleTermDataSubject
change.
TripleTermObject ::= Var | iri | RDFLiteral | NumericLiteral | BooleanLiteral | BlankNode | TripleTerm | ||
TripleTermData ::= '<<(' TripleTermDataSubject ( iri | 'a' ) TripleTermDataObject ')>>' | ||
TripleTermDataSubject ::= iri | RDFLiteral | NumericLiteral | BooleanLiteral | ||
TripleTermDataSubject ::= iri | RDFLiteral | NumericLiteral | BooleanLiteral | TripleTermData |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TripleTermDataSubject
change.
52f9895
to
83699c3
Compare
This closes #236.
Only the grammar table and BNF file are changed by this PR.
Make triple patterns "symmetric RDF" by adding
TripleTerm
as shown below:From the BNF diff:
Preview | Diff