есть структура
db1
{
"_id" : UUID("83ccb7fc-0c42-4121-b4f9-6c7f2fb82fdd"),
"items" : [
UUID("7eb90f2f-180e-4531-90ac-0ea1946f5155"),
UUID("0e1e885f-4cee-4ef5-8220-b8d503ac3337"),
UUID("543e4187-b752-4978-89df-234aca92a77c"),
UUID("0e6e2c89-f007-4147-a433-ee0325ba2719"),
]
}
db2
{
"_id" : UUID("7eb90f2f-180e-4531-90ac-0ea1946f5155"),
"db1Id": UUID("83ccb7fc-0c42-4121-b4f9-6c7f2fb82fdd"),
"Name": "Test"
}
мне нужно получить
{
"_id" : UUID("83ccb7fc-0c42-4121-b4f9-6c7f2fb82fdd"),
"items": [
{
"_id" : UUID("7eb90f2f-180e-4531-90ac-0ea1946f5155"),
"db1Id": UUID("83ccb7fc-0c42-4121-b4f9-6c7f2fb82fdd"),
"Name": "Test"
}
]
}