Here is my Firestore database structure:
Faculty (Collection)
--Document1
-memberId: "77777"
-fullName: "Vince Melmar Ybanez"
--Document2
-memberId: "12345"
-fullName: "John Doe"
--Document3
AnnualDue (Sub-Collection of Document1 in Faculty)
--Document1
-memberId: "77777"
-fullName: "Vince Melmar Ybanez"
--Document2
-memberId: "77777"
-fullName: "Vince Melmar Ybanez"
AnnualDue (Sub-Collection of Document2 in Faculty)
--Document3
-memberId: "12345"
-fullName: "John Doe"
AnnualDue (Collection)
--Document1
-memberId: "77777"
-fullName: "Vince Melmar Ybanez"
--Document2
-memberId: "77777"
-fullName: "Vince Melmar Ybanez"
--Document3
-memberId: "12345"
-fullName: "John Doe"
How to update the fullName
of member 1 (Document 1) from Vince Melmar Ybanez to Vince Ybanez in Faculty Collection, Annual Due Collection, and AnnualDue Sub-Collection?