2026-02-03 10:18:48 +00:00
|
|
|
```graphql
|
2025-08-20 07:22:48 +00:00
|
|
|
mutation {
|
2025-08-20 14:20:05 +00:00
|
|
|
tablesDBCreateTable(
|
2025-08-20 07:22:48 +00:00
|
|
|
databaseId: "<DATABASE_ID>",
|
|
|
|
|
tableId: "<TABLE_ID>",
|
|
|
|
|
name: "<NAME>",
|
|
|
|
|
permissions: ["read("any")"],
|
|
|
|
|
rowSecurity: false,
|
2025-12-17 10:18:49 +00:00
|
|
|
enabled: false,
|
|
|
|
|
columns: [],
|
|
|
|
|
indexes: []
|
2025-08-20 07:22:48 +00:00
|
|
|
) {
|
|
|
|
|
_id
|
|
|
|
|
_createdAt
|
|
|
|
|
_updatedAt
|
|
|
|
|
_permissions
|
|
|
|
|
databaseId
|
|
|
|
|
name
|
|
|
|
|
enabled
|
|
|
|
|
rowSecurity
|
|
|
|
|
columns
|
|
|
|
|
indexes {
|
|
|
|
|
_id
|
|
|
|
|
_createdAt
|
|
|
|
|
_updatedAt
|
|
|
|
|
key
|
|
|
|
|
type
|
|
|
|
|
status
|
|
|
|
|
error
|
|
|
|
|
columns
|
|
|
|
|
lengths
|
|
|
|
|
orders
|
|
|
|
|
}
|
2026-02-12 05:42:51 +00:00
|
|
|
bytesMax
|
|
|
|
|
bytesUsed
|
2025-08-20 07:22:48 +00:00
|
|
|
}
|
|
|
|
|
}
|
2026-02-03 10:18:48 +00:00
|
|
|
```
|