-
-
Save drexel-ue/1f3fe6f4751c25e7b7b1bb121967d505 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
'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