-
Notifications
You must be signed in to change notification settings - Fork 0
Sample State
Paul edited this page Jan 28, 2018
·
12 revisions
- Sample State
{
entities: {
projects: {
1: {
id: 1,
title: "make an album",
blurb: "really cool jamz"
description: "good music, and I'll write way more about it",
author_id: 1,
due_date: 06/28/18,
funding_goal: 5000
category: 'music',
img_url: "http:kickstarter.com"
}
2: {
id: 2,
title: "make a cool game",
blurb: "lots of pieces"
description: "rad game with many pieces and many other things",
author_id: 3,
due_date: 06/15/18,
funding_goal: 1000000
category: 'games',
img_url: "http:kickstarter.com"
}
}
rewards: {
1: {
id: 1,
project_id: 1,
title: "super backer",
description: "get 100 widgets"
}
}
users: {
11: {
id: 11,
username: "bart"
backed_id: [1, 2], --JOINS table?
img_url: ???
}
}
}
}