Last active
August 29, 2015 14:23
-
-
Save Alino/32eaa475c13f64b01228 to your computer and use it in GitHub Desktop.
db.eshops
This file contains 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
{ | |
"_id" : ObjectId("53e87e239ae974e6a0a81004"), | |
"name" : "www.example.com", | |
"products" : [ | |
{ | |
"name" : "apple", //lets say the name key here is primary key of products | |
"status" : 0 | |
}, | |
{ | |
"name" : "banana", | |
"status" : 0 | |
}, | |
{ | |
"name" : "iphone", | |
"status" : 0 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment