Skip to content

Instantly share code, notes, and snippets.

@AmitDJagtap
Created November 3, 2019 14:22
Show Gist options
  • Save AmitDJagtap/70c79a4bf50512330752fd0ec801cb4b to your computer and use it in GitHub Desktop.
Save AmitDJagtap/70c79a4bf50512330752fd0ec801cb4b to your computer and use it in GitHub Desktop.
{
_id: 1,
item: "abc",
stock: [
{ size: "S", color: "red", quantity: 25
},
{ size: "S", color: "blue", quantity: 10
},
{ size: "M", color: "blue", quantity: 50
}
]
}
{
_id: 2,
item: "def",
stock: [
{ size: "S", color: "blue", quantity: 20
},
{ size: "M", color: "blue", quantity: 5
},
{ size: "M", color: "black", quantity: 10
},
{ size: "L", color: "red", quantity: 2
}
]
}
{
_id: 3,
item: "ijk",
stock: [
{ size: "M", color: "blue", quantity: 15
},
{ size: "L", color: "blue", quantity: 100
},
{ size: "L", color: "red", quantity: 25
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment