mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
25 lines
420 B
Markdown
25 lines
420 B
Markdown
|
|
mutation {
|
||
|
|
databasesCreateIntegerAttribute(
|
||
|
|
databaseId: "<DATABASE_ID>",
|
||
|
|
collectionId: "<COLLECTION_ID>",
|
||
|
|
key: "",
|
||
|
|
required: false,
|
||
|
|
min: 0,
|
||
|
|
max: 0,
|
||
|
|
default: 0,
|
||
|
|
array: false
|
||
|
|
) {
|
||
|
|
key
|
||
|
|
type
|
||
|
|
status
|
||
|
|
error
|
||
|
|
required
|
||
|
|
array
|
||
|
|
_createdAt
|
||
|
|
_updatedAt
|
||
|
|
min
|
||
|
|
max
|
||
|
|
default
|
||
|
|
}
|
||
|
|
}
|