-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change node_id and rel_id to STRING & apply changes to EBNF
- Loading branch information
1 parent
2aae4fe
commit 75df8db
Showing
4 changed files
with
26 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<Author01>{"Author"}["fname":"John","lname":"Smith"] | ||
<Author02>{"Author"}["fname":"Alice","lname":"Brown"] | ||
<EI01>{"Entry","InProc"}["title":"Serialization for...", "numpages":10,"keyword":"Graph database"] | ||
<EA01>{"Entry","Article"}["title":"Property Graph...", "numpages":10,"keyword":["Query", "Graph"]] | ||
<Proc01>{"Proceedings"}["title":"BDAS","year":2018,"month":"May"] | ||
<Jour01>{"Journal"}["title":"J. DB","year":2020,"vol":30] | ||
<"Author01">{"Author"}["fname":"John","lname":"Smith"] | ||
<"Author02">{"Author"}["fname":"Alice","lname":"Brown"] | ||
<"EI01">{"Entry","InProc"}["title":"Serialization for...", "numpages":10,"keyword":"Graph database"] | ||
<"EA01">{"Entry","Article"}["title":"Property Graph...", "numpages":10,"keyword":["Query", "Graph"]] | ||
<"Proc01">{"Proceedings"}["title":"BDAS","year":2018,"month":"May"] | ||
<"Jour01">{"Journal"}["title":"J. DB","year":2020,"vol":30] | ||
|
||
(EI01)-{"has_author"}["order":1]->(Author01) | ||
(EI01)-{"has_author"}["order":2]->(Author02) | ||
(EA01)-{"has_author"}["order":1]->(Author02) | ||
(EA01)-{"cites"}->(EI01) | ||
(EI01)-{"booktitle"}["pages":"111-121"]->(Proc01) | ||
(EA01)-{"published_in"}["pages":"222-232"]->(Jour01) | ||
("EI01")-{"has_author"}["order":1]->("Author01") | ||
("EI01")-{"has_author"}["order":2]->("Author02") | ||
("EA01")-{"has_author"}["order":1]->("Author02") | ||
("EA01")-{"cites"}->("EI01") | ||
("EI01")-{"booktitle"}["pages":"111-121"]->("Proc01") | ||
("EA01")-{"published_in"}["pages":"222-232"]->("Jour01") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<a>{"a1d","x"}["aa1a":true,"a2aa":"text","aa3aa":null] | ||
<b43b>{"label1"}["value":5] | ||
<c>{"label333","c"}["value":"male","lang":"en","valid":false] | ||
<d>{"label546"}["key":442.1333] | ||
<e>{"ef22","y","v"}["key44":[true,false,"some text", null, 11, 11.2231]] | ||
<"a">{"a1d","x"}["aa1a":true,"a2aa":"text","aa3aa":null] | ||
<"b43b">{"label1"}["value":5] | ||
<"c">{"label333","c"}["value":"male","lang":"en","valid":false] | ||
<"d">{"label546"}["key":442.1333] | ||
<"e">{"ef22","y","v"}["key44":[true,false,"some text", null, 11, 11.2231]] | ||
|
||
(a)-<ferf>{"aaa1a"}["key":"value", "aab2bc":[44.22,"en",22]]->(c) | ||
(a)-<id341>{"aaa2a"}->(c) | ||
(b43b)-{"bbb23b"}-(e) | ||
(b43b)-{"bbbb53b"}["bbbd32d":false, "value":null]-(e) | ||
("a")-<"ferf">{"aaa1a"}["key":"value", "aab2bc":[44.22,"en",22]]->("c") | ||
("a")-<"id341">{"aaa2a"}->("c") | ||
("b43b")-{"bbb23b"}-("e") | ||
("b43b")-{"bbbb53b"}["bbbd32d":false, "value":null]-("e") |