SwiftfulFirestore — удобные функции для использования Firebase Firestore с Swift Concurrency.
Например, вот как происходит создание документа:
try await collection.setDocument(document: movie) try await collection.setDocument(id: movie.id, document: movie)
Обновление существующего документа:
try await collection.updateDocument(document: movie) try await collection.updateDocument(id: movie.id, document: movie) try await collection.updateDocument(id: movie.id, dict: try movie.asJsonDictionary())