{
entities: {
users: {
1: {
id: 1,
username: "Fox",
photoIds: [5],
followers: 500,
following: 500
},
2: {
id: 2,
username: "Falco",
photoIds: [10],
followers: 400,
following: 400
}
},
posts: {
5: {
id: 5,
likeId: [1, 2]
imageUrl: "http://i.imgur.com/vT1fz7p.png",
userId: 2,
},
10: {
id: 10,
likeId: [2]
body: "https://i.etsystatic.com/14237122/r/il/b9fd93/1925381125/il_570xN.1925381125_amxx.jpg",
userId: 1,
},
3: {
id: 3,
body: "https://live.staticflickr.com/1677/25516870316_9077d4ac0b_b.jpg",
userId: 1,
}
},
likes: {
21: {
id: 21,
likerId: 1,
photoId: 5,
},
22: {
id: 22,
likerId: 1,
photoId: 10,
}
},
comments: {
25: {
id: 25,
userId: 1,
photoId: 5,
comment: "Get destroyed"
},
27: {
id: 27,
userId: 1,
photoId: 10,
comment: "I am better than you"
}
},
following: {
31: {
id: 25,
userId: 2,
following: [1]
},
32: {
id: 32,
userId: 1,
following: []
}
}
},
ui: {
loading: true/false
},
errors: {
login: ["Incorrect username/password combination"]
},
session: { currentUserId: 2 }
}