-
-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(rstream-query): rename types, update readme
- rename Fact => Triple, FactIds => TripleIds - rename FactGraph => TripleStore - add TripleStore.addTriples() - update TripleStore ctor
- Loading branch information
1 parent
97a6e94
commit b121c47
Showing
9 changed files
with
646 additions
and
99 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
digraph g { | ||
rankdir=LR; | ||
node[fontname=Inconsolata,fontsize=11,style=filled,fontcolor=white]; | ||
edge[fontname=Inconsolata,fontsize=11]; | ||
s0[label="S\n(Stream)", color=blue]; | ||
s1[label="s", color=black]; | ||
s2[label="in-s", color=black]; | ||
s3[label="<noid>", color=gray]; | ||
s4[label="london-raw\n(StreamSync)", color=red]; | ||
s5[label="xform-2", color=black]; | ||
s6[label="london", color=black]; | ||
s7[label="sub-3", color=black]; | ||
s8[label="<noid>", color=gray]; | ||
s9[label="P\n(Stream)", color=blue]; | ||
s10[label="p", color=black]; | ||
s11[label="in-p", color=black]; | ||
s12[label="<noid>", color=gray]; | ||
s13[label="countries-raw\n(StreamSync)", color=red]; | ||
s14[label="xform-0", color=black]; | ||
s15[label="countries", color=black]; | ||
s16[label="sub-1", color=black]; | ||
s17[label="<noid>", color=gray]; | ||
s18[label="O\n(Stream)", color=blue]; | ||
s19[label="o", color=black]; | ||
s20[label="in-o", color=black]; | ||
s21[label="<noid>", color=gray]; | ||
s22[label="ALL\n(Stream)", color=blue]; | ||
s23[label="s", color=black]; | ||
s24[label="in-s", color=black]; | ||
s25[label="<noid>", color=gray]; | ||
s26[label="p", color=black]; | ||
s27[label="in-p", color=black]; | ||
s28[label="<noid>", color=gray]; | ||
s29[label="o", color=black]; | ||
s30[label="in-o", color=black]; | ||
s31[label="<noid>", color=gray]; | ||
s7 -> s8; | ||
s6 -> s7; | ||
s5 -> s6[label="xform"]; | ||
s4 -> s5[label="xform"]; | ||
s3 -> s4[label="xform"]; | ||
s2 -> s3; | ||
s1 -> s2[label="xform"]; | ||
s0 -> s1[label="xform"]; | ||
s16 -> s17; | ||
s15 -> s16; | ||
s14 -> s15[label="xform"]; | ||
s13 -> s14[label="xform"]; | ||
s12 -> s13[label="xform"]; | ||
s11 -> s12; | ||
s10 -> s11[label="xform"]; | ||
s9 -> s10[label="xform"]; | ||
s21 -> s13[label="xform"]; | ||
s20 -> s21; | ||
s19 -> s20[label="xform"]; | ||
s18 -> s19[label="xform"]; | ||
s25 -> s13[label="xform"]; | ||
s24 -> s25; | ||
s23 -> s24[label="xform"]; | ||
s28 -> s4[label="xform"]; | ||
s27 -> s28; | ||
s26 -> s27[label="xform"]; | ||
s31 -> s4[label="xform"]; | ||
s30 -> s31; | ||
s29 -> s30[label="xform"]; | ||
s22 -> s23; | ||
s22 -> s26; | ||
s22 -> s29; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,4 +1,4 @@ | ||
export * from "./api"; | ||
export * from "./graph"; | ||
export * from "./pattern"; | ||
export * from "./qvar"; | ||
export * from "./store"; |
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
Oops, something went wrong.