mirror of
https://github.com/appwrite/appwrite
synced 2026-05-13 20:18:50 +00:00
321 B
321 B
import Appwrite
let client = Client() .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setKey("") //
let databases = Databases(client)
let documentList = try await databases.createDocuments( databaseId: "<DATABASE_ID>", collectionId: "<COLLECTION_ID>", documents: [] )