-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
Right now SubGraph stores entities directly in app-db under keys that look like [:some-keyword some-key-value]. It makes it incredibly hard to look at app-db with the naked eye or with tools like https://github.com/flexsurfer/re-frisk. I think it would make sense to use a tree structure and store the entities like {:some-keyword {some-key-value some-value}}.
So instead of e.g. this
{[:a/id 1] {:id 1 :name "x"}
[:a/id 2] {:id 2 :name "y"}}
it would be this
{:a/id {1 {:id 1 :name "x"}
2 {:id 2 :name "y"}}}
Metadata
Metadata
Assignees
Labels
No labels