diff options
| author | nexxeln <[email protected]> | 2025-12-02 18:35:15 +0000 |
|---|---|---|
| committer | nexxeln <[email protected]> | 2025-12-02 18:35:15 +0000 |
| commit | bb3ab0271e34e76db5461b16b7823f823eaf63e9 (patch) | |
| tree | 86aebdb43add602c6836b5c22ae59a918e1c02a5 /packages/memory-graph/src/constants.ts | |
| parent | Fix: Update discord links in README.md and CONTRIBUTING.md (#598) (diff) | |
| download | supermemory-add-merge-relations.tar.xz supermemory-add-merge-relations.zip | |
add support for merges relation in the graph (#590)add-merge-relations
new relation called "merges"
we use orange dashed line to represent it
works just like how extends, updates, etc are displayed
Diffstat (limited to 'packages/memory-graph/src/constants.ts')
| -rw-r--r-- | packages/memory-graph/src/constants.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/memory-graph/src/constants.ts b/packages/memory-graph/src/constants.ts index 23193601..b93912e0 100644 --- a/packages/memory-graph/src/constants.ts +++ b/packages/memory-graph/src/constants.ts @@ -46,6 +46,7 @@ export const colors = { updates: "rgba(147, 77, 253, 0.5)", // purple extends: "rgba(16, 185, 129, 0.5)", // green derives: "rgba(147, 197, 253, 0.5)", // blue + merges: "rgba(251, 165, 36, 0.5)", // orange }, }; |