Created
June 27, 2016 16:23
-
-
Save woniesong92/8959f47dde22784e5b28edcb1754fdb0 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
subredditByTitle: { | |
food: { | |
id: subreddit_1, | |
title: "food" | |
posts: [post_1, post_2] | |
} | |
culture: { | |
id: subreddit_2, | |
title: "culture" | |
posts: [post_3, post_4] | |
} | |
} | |
postsById: { | |
post_1: { | |
body: ".." | |
comments: [comment_1, comment_2] | |
}, | |
post_2: { | |
body: "..", | |
comments: [comment_3, comment_4] | |
} | |
} | |
commentsById: { | |
comment_1: { | |
body: ".." | |
}, | |
comment_2: { | |
body: ".." | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment