I\'ve noticed, when I try to use a realtime listener on a Collection in firestore, each time a new Document is added to the collection, the logic will be rerun, and I will d
You can get the new document that caused this callback
for change in changes: if change.type.name == 'ADDED': print(f'New document: {change.document.id}')