Skip to content

Instantly share code, notes, and snippets.

@ibrahim12
Created April 13, 2016 17:24
Show Gist options
  • Save ibrahim12/776dd6c9904226c26a8503e70d1e4e21 to your computer and use it in GitHub Desktop.
Save ibrahim12/776dd6c9904226c26a8503e70d1e4e21 to your computer and use it in GitHub Desktop.
```json
users = [
{
"_id" : 1000,
"fb_id" : "a",
"username" : "",
/* user other fields */
"posts" : [
{
"_id" : 2000,
"fb_id" : "b",
/* post fields */
},
{
"_id" : 2001,
"fb_id" : "c",
/* post fields */
}
]
},
{
"_id" : 1001,
"fb_id" : "e",
"username" : "",
/* user other fields */
"posts" : [
{
"_id" : 3001,
"fb_id" : "f",
/* post fields */
},
{
"_id" : 3002,
"fb_id" : "x",
/* post fields */
}
]
},
]
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment