mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
595 B
595 B
package main
import ( "fmt" "github.com/appwrite/sdk-for-go/client" "github.com/appwrite/sdk-for-go/databases" )
client := client.New( client.WithEndpoint("https://.cloud.appwrite.io/v1") client.WithProject("<YOUR_PROJECT_ID>") client.WithKey("<YOUR_API_KEY>") )
service := databases.New(client)
response, error := service.UpdateFloatAttribute( "<DATABASE_ID>", "<COLLECTION_ID>", "", false, 0, databases.WithUpdateFloatAttributeMin(0), databases.WithUpdateFloatAttributeMax(0), databases.WithUpdateFloatAttributeNewKey(""), )