I have a document for a scheduled meeting that looks like this:
{
"name": "Meeting Name",
"uuid": "NYoc2aL6",
"participants": [
{
"id": "JLKGZnfFkGvX9DHgz",
"status": "joined",
"name": "Guest 03"
},
{
// newly invited user, user hasn't logged in with invite url yet
"id": "",
"status": "invited",
"name": "<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="b6d3dbd7dfdaf6d3dbd7dfda98d5d9db">[email protected]</a>"
}
]
}
Now, I want to synchronize the 'name' field with the corresponding name in the Users collection. Is there any automated process at the database level to achieve this, or will I have to manually update it in each location where the name is changed?