Sample State - SethUllman/NetClips GitHub Wiki
{
entities: {
users: {
1: {
id: 1,
email: '[email protected]',
watch_list: [1, 4, 7, 2]
}
2: {
id: 2,
email: '[email protected]',
watch_list: [2]
}
}
movies: {
id: 1,
title: 'The Office',
year: 2012,
seasons: true,
directors: ['Greg Daniels', 'Ricky Gervais', 'Stephen Merchant'],
cast: ['Steve Carell', 'Rainn Wilson', 'John Krasinski', 'Jenna Fischer'],
writers: ['Mindy Kaling', 'Ricky Gervais', 'Michael Schur', 'Greg Daniels', 'Ryan Koh'],
genres: ['Comedy', 'Witty Tv', 'Workplace'],
maturity_rating: 'TV-14',
description: 'The Office is an American television sitcom that depicts the everyday lives of office employees in the Scranton, Pennsylvania branch of the fictional Dunder Mifflin Paper Company.',
likes: 485,
video_url: 'some_vid.mp4',
image_url: 'pic_of_office.jpeg'
}
watch_list: {
1: {
id: 1,
movie_ids: [],
user_id: 1
}
2: {
id: 2,
movie_ids: [1],
user_id: 2
}
}
}
}