Допустим, у меня есть два типа данных:
Сообщения
"posts": {
"postid_xx1": {
"title": "Lorem ipsum"
},
"postid_xx2": {
"title": "Amet laboris"
},
"postid_xx3": {
"title": "Sit quis incididunt"
}
}
Пользователи
"users": {
"userid_xx1": {
"name": "John Doe",
"posts": {
"postid_xx1": true,
"postid_xx3": true
}
},
"userid_xx1": {
"name": "Jane Doe,
"posts": {
"postid_xx2": true
}
}
}
Как удалить postid_xx1
из users
, когда я удаляю его из posts
?.