appwrite/docs/examples/0.11.x/server-swift/examples/database/delete-collection.md

21 lines
559 B
Markdown
Raw Normal View History

import Appwrite
func main() {
let client = Client()
.setEndpoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
.setProject("5df5acd0d48c2") // Your project ID
.setKey("919c2d18fb5d4...a2ae413da83346ad2") // Your secret API key
2021-10-14 10:07:14 +00:00
let database = Database(client)
database.deleteCollection(
collectionId: "[COLLECTION_ID]"
) { result in
switch result {
case .failure(let error):
print(error.message)
case .success(let ):
print(String(describing: )
}
}
}