Skip to content

Instantly share code, notes, and snippets.

@schatekar
Created December 16, 2015 15:34
Show Gist options
  • Save schatekar/a44f63f7caa39ead1b86 to your computer and use it in GitHub Desktop.
Save schatekar/a44f63f7caa39ead1b86 to your computer and use it in GitHub Desktop.
//collection- borrowers
{
"_id": "some id",
"name": "Suhas Chatekar",
"borrowed_books": [
{
"bookid": "book 1"
},
{
"bookid": "book 2",
}
]
}
//Collection - books
[
{
"_id": "book 1",
"name": "Build Single Page Applications with SQL",
"author": {
"_id": "author 1",
"_name": "Chuck Norris"
}
},
{
"_id": "book 2",
"name": "Some other book",
"author": {
"_id": "author 2",
"_name": "Some other author"
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment