mirror of
https://github.com/appwrite/appwrite
synced 2026-04-21 13:37:16 +00:00
699 B
699 B
mutation {
tablesDBCreateTable(
databaseId: "<DATABASE_ID>",
tableId: "<TABLE_ID>",
name: "<NAME>",
permissions: ["read("any")"],
rowSecurity: false,
enabled: false,
columns: [],
indexes: []
) {
_id
_createdAt
_updatedAt
_permissions
databaseId
name
enabled
rowSecurity
columns
indexes {
_id
_createdAt
_updatedAt
key
type
status
error
columns
lengths
orders
}
bytesMax
bytesUsed
}
}