def print_documents()

in demo_deployment/firestore_crud.py [0:0]


def print_documents(db):
    doc_ref = db.collection(WORKFLOWS_COLLECTION_DEFAULT_NAME)
    docs = doc_ref.stream()
    for doc in docs:
        print(f"{doc.id} => {doc.to_dict()}")