{ entities: {
messages: {
1: {
id: 11,
content: "wait, you're telling me EVERY object has an id",
user_id: 3,
timestamp: 2019-03-22 09:13:13,
reply_ids: [
12, 13, 14
]
parent_reply_id: 8
},
2: {
...
}
},
users: {
1: {
id: 1,
name: "Milford Graves",
avatar_url: "some/path/to_img_url.png"
},
2: {
...
}
},
channels: {
1: {
id: 32,
name: "power users chat",
users: [
12,13,14,15
],
messages: [
13,14,15,22,24
]
},
2: {
id: 33,
name: "normal chillin users chat",
users: [
23,42,29
],
messages: [
13,14,15,22,24
]
}
},
workspace: {
1: {
id: 14,
name: "programmers of brighton beach",
channels: [
2,3,7
]
}
},
ui: {
loading: true/false,
notifications: {
channels: {
14: {
id: 14,
unreads: 2
},
15: {
id: 15,
unreads: 0
}
}
}
},
errors: {
login: ['incorrect password', 'no user found with this username']
},
session: {
currentUserId: 1789
}
}
----