Sample State - RizzaCarla/Satisfy GitHub Wiki

{
  entities: {
    users: {
      3: {
        id: 3,
        username: "Dhiveshan",
        email: "[email protected]"
      },
      4: {
        id: 4,
        username: "RizzaCarla",
        email: "[email protected]"
      }
    },
    artists: {
      1: {
        id: 1,
        artistName: "FKJ",
      },
      2: {
        id: 2,
        artistName: "(((0)))",
      }
    },
    albums: {
      1: {
        id: 1,
        albumTitle: "Ylang Ylang EP",
        artistId: 1
      },
      2: {
        id: 2,
        albumTitle: "(((2)))",
        artistId: 2
      }
    },
    songs: {
      1: {
        id: 1,
        albumId: 1,
        songTitle: "Ylang Ylang",
        totalSongTime: "4:44"
      },
      2: {
        id: 2,
        albumId: 2,
        songTitle: "iFeel",
        totalSongTime: "3:33"
      }
    },
    likes: {
      1: {
        id: 1,
        likeable_type: 'Song',
        likeable_id: 1
      },
      2: {
        id: 1,
        likeable_type: 'Artist',
        likeable_id: 1
      }
    },
  errors: {
    login: ["Incorrect username/password combination"]
  },
  session: { currentUserId: 4 }
}