mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
33 lines
607 B
Markdown
33 lines
607 B
Markdown
mutation {
|
|
tablesDBUpdateTable(
|
|
databaseId: "<DATABASE_ID>",
|
|
tableId: "<TABLE_ID>",
|
|
name: "<NAME>",
|
|
permissions: ["read("any")"],
|
|
rowSecurity: false,
|
|
enabled: false
|
|
) {
|
|
_id
|
|
_createdAt
|
|
_updatedAt
|
|
_permissions
|
|
databaseId
|
|
name
|
|
enabled
|
|
rowSecurity
|
|
columns
|
|
indexes {
|
|
_id
|
|
_createdAt
|
|
_updatedAt
|
|
key
|
|
type
|
|
status
|
|
error
|
|
columns
|
|
lengths
|
|
orders
|
|
}
|
|
}
|
|
}
|