Skip to content

Sample State

Jonathan Bae edited this page Dec 9, 2019 · 15 revisions
{
    entities: {
        users: {
            1: {
                id: 1,
                fullname: "jonathan bae",
                hobbies: [1, 3, 4],
                things: [5, 7, 8]
            },
            2: {
                id: 2,
                fullname: "james bond",
                hobbies: [4, 5, 6],
                things: [1, 3, 4]
            }
            3: {
                id: 2,
                fullname: "harry potter",
                hobbies: [2, 4, 5],
                things: [12, 13, 14]
            }
        },
        hobbies: {
            1: {
                name: "Watches",
                description: "a community for people who enjoy the design aspects, accuracy, history and novelty of timepieces."
            },
            2: {
                name: "Writing",
                description: "a community for people who enjoy writing as a hobby. our community includes things like pens, journals, etcetera" 
            },
            3: {
                name: "Technology",
                description: "community based around the modern advancements in technology"
            }
        },
        things: {
            1: {
                name: "Rolex Daytona Yellow Gold",
                price: 12,
                image: "watch12.jpeg",
                description: "a cheap watch for everyday wear"
            },
            2: {
                name: "Pickup ESC Keyboard",
                price: 1000,
                image: "keyboard32.jpeg",
                description: "hotswappable switches make sure you never need to buy a keyboard again"
            },
            3: {
                name: "Rotring600",
                price: 35,
                image: "pen4.jpeg",
                description: "an everyday carry pen that writes smoothly"
            }
        },
        reviews: {
            1: {
              stars: 3,
              body: "uncomfortable on wrist and the clasp was broken upon delivery"
            },
            2: {
                stars: 5,
                body: "best keyboard I have ever used"
            },
            3: {
                stars: 4,
                body: "the pen came with horrible ink but after switching to a quinnflow, the pen was comfortable and wrote smoothly"
            }
        }
    }
}
Clone this wiki locally