Process Flow - Getting all documents in collection
Start
Connect to Firestore
Access Collection
Call get() to fetch all documents
Receive QuerySnapshot
Iterate over documents
Extract data from each document
Use or display data
End
This flow shows how to connect to Firestore, access a collection, fetch all documents, and then process each document's data.