Skip to content

Instantly share code, notes, and snippets.

@drexel-ue
Created June 23, 2019 23:26
Show Gist options
  • Save drexel-ue/1f3fe6f4751c25e7b7b1bb121967d505 to your computer and use it in GitHub Desktop.
Save drexel-ue/1f3fe6f4751c25e7b7b1bb121967d505 to your computer and use it in GitHub Desktop.
{
'user' : {
'id' : 2,
'name' : 'taco',
'likes' : [
{
'id' : 3,
'video_id' : 23,
'liker_id' : 3,
'likee_id' : 2,
'createdAt' : some date
},
{
'id' : 9,
'video_id' : 29,
'liker_id' : 3,
'likee_id' : 2,
'createdAt' : some date
},
],
'shares' : [
{
'id' : 3,
'video_id' : 23,
'sharer_id' : 3,
'sharee_id' : 2,
'createdAt' : some date
},
{
'id' : 9,
'video_id' : 29,
'sharer_id' : 3,
'sharee_id' : 2,
'createdAt' : some date
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment