now I need to push items to directors array.
I tried this code
Firestore()
.collection('notices')
.doc(item.id)
.set({readBy: {directors: [user.id]}}, {merge: true});
but it replace the existing items in directors array.
How to push items to directors array without replacing existing items ?