Sample State - AetherVial/Vaporize GitHub Wiki

{
entities: {
    tracks: {
        '1': {
            id: 1,
            title: "Non Non Biyori",
            artistId: 1,
            albumId: 1,
            playlistId: [1,2,3]
        } 
    },
    artists: {
        '1': {
            id: 1,
            name: "NANORipe",
            trackIds: [1],
            albumIds: [1],
            genre: ["pop", "country", "japanese"]
        }
    },
    albums: {
        '1': {
            id: 1,
            title: "Non Non Biyori Single -EP",
            artistId: [1],
            songIds: [1]
        }
    },
    users: {
        '1': {
            id: 1,
            username: "stantonhuang",
            firstname: "stanton",
            lastname: "huang",
            email: "[email protected]",
            followerIds: [2,3,4],
            followedUserIds: [2,3,4],
            playlistIds: [1,2,3],
            followedArtistIds: [1,2,3]
        }
    },
    playlists: {
        '1': {
            id: 1,
            userId: 1,
            name: "Lofi / Chill Hip Hop Beats to Study By",
            trackIds: [1,2,3,4,5]
        }
    }
},
ui: {
    playing?: True,
    queue: [1,2,3,4,5]
},
errors: {
    login: ["Incorrect username/password combination"]
},
session: { currentUserId: 25 }
}