```swift import Appwrite let client = Client() .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID let databases = Databases(client) let transaction = try await databases.createOperations( transactionId: "", operations: [ { "action": "create", "databaseId": "", "collectionId": "", "documentId": "", "data": { "name": "Walter O'Brien" } } ] // optional ) ```