Skip to content

Sample State

killacan edited this page Sep 6, 2022 · 5 revisions

Sample State

{
  entities: {
    games: {
      1: {
        id: 1,
        game_name: "Happy fun Times",
        uploaderId: 11,
      },
      2: {
        id: 2,
        body: "Mill sim 3",
        uploaderId: 25,
      },
      3: {
        id: 3,
        body: "Llama Madness",
        uploaderId: 11,
      }
    },
    users: {
      42: {
        id: 42,
        username: "Leisurellama",       
      },
      69: {
        id: 69,
        username: "Frank_the_Tank",
      }
    },
    reviews: {
        1: {
           id: 1, 
           reviewerId: 42,
           gameId: 7,
           body: "This game is great, highly reccomended"
        }
    },
	  cart: {
		  3: {
			  userId: 23,
			  gameId: 4
		  }
	  }, 
	  gameTags: {
		  6: {
			  tagId: 6,
			  gameId: 3
		  }
	  },
	  tags: {
		  6: {
			  id: 6,
			  tag: 'Horror'
		  }
	  },
	  userGames: {
		  37: {
			  id: 37,
			  userId: 20,
			  gameId: 3
		  }
	  }
  },
  session: { currentUserId: 25 }
}

Clone this wiki locally