I have the following structure:
COLLECTION_1
---DOC_1
------some_filed: ""
------list (array of maps field)
---------{id: 11, counter: 10}
---------{id: 12, counter: 15}
---------{id: 13, counter: 20}
---------{id: 14, counter: 25}
I am trying to execute firebase increment() on counter field by id.
So if I like to update list item with id 14 by 1.
Can somebody confirm me if thisis possible or I need to fetch document and manually find list item by id update it and update changes back to document?