I need to update a status field in the index array [0] where time == 8:00, I need to pass this status to == \"0\", only that this array is inside a matri
Firestore doesn't offer any updates that allow you to directly change array items by their index. You will have to write code to read the document, modify the array in memory to be the way you want, then update the array field back to the document.