GitHub
SwiftfulFirestore — работа с Firestore в Swift Concurrency
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())
Если вы нашли опечатку - выделите ее и нажмите Ctrl + Enter! Для связи с нами вы можете использовать info@apptractor.ru.