https://github.com/katt/mongodb-deep-set
https://github.com/katt/mongodb-deep-set
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/katt/mongodb-deep-set
- Owner: KATT
- Created: 2017-12-05T11:27:07.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-05T11:44:53.000Z (over 8 years ago)
- Last Synced: 2024-10-05T16:42:23.921Z (over 1 year ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Output
```sh
✗ npm start
> node index
Docs before update: [
{
"_id": "5a26846fa4959814f1c484c8",
"subDocuments": [
{
"id": "8bac11b2-993a-4e90-9139-f3015f8549a4",
"name": "hello"
},
{
"id": "db944542-100b-485d-84d4-b03f43e52644",
"name": "hello2"
}
]
}
]
Docs after update: [
{
"_id": "5a26846fa4959814f1c484c8",
"subDocuments": [
{
"id": "8bac11b2-993a-4e90-9139-f3015f8549a4",
"name": "hello",
"deepSubDocs": [
{
"id": "e5b6bfbd-5648-4c3d-99a1-6b34ff3b9f8a",
"type": "hey"
}
]
},
{
"id": "db944542-100b-485d-84d4-b03f43e52644",
"name": "hello2",
"deepSubDocs": [
{
"id": "e5b6bfbd-5648-4c3d-99a1-6b34ff3b9f8a",
"type": "hey"
}
]
}
]
}
]
```