Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.
UpdateTableInput
Input object expected by the query or mutation
input UpdateTableInput {
externalDescription: String
lastRefreshedAt: DateTime
numberOfQueries: Int
popularity: Int
tableSize: Int
tableType: TableType
url: String
deletedAt: DateTime
externalId: String
id: String!
name: String
}
Fields
UpdateTableInput.externalDescription ● String scalar general
The documentation from the source for this table
UpdateTableInput.lastRefreshedAt ● DateTime scalar general
The last known datetime of refresh for this table
UpdateTableInput.numberOfQueries ● Int scalar general
The number of queries on which popularity is based
UpdateTableInput.popularity ● Int scalar general
The table popularity rated out of 1000000
UpdateTableInput.tableSize ● Int scalar general
The size of the table (in megabytes)
UpdateTableInput.tableType ● TableType enum tables
The type of this table
UpdateTableInput.url ● String scalar general
The external url to the table
UpdateTableInput.deletedAt ● DateTime scalar general
If present, indicates when the table was deleted
UpdateTableInput.externalId ● String scalar general
The technical table identifier from the warehouse table structure
UpdateTableInput.id ● String! non-null scalar general
The table id
UpdateTableInput.name ● String scalar general
The table name
Example
{
"externalDescription": "Contains customer information",
"lastRefreshedAt": "2025-09-20T12:00:00.000Z",
"numberOfQueries": 100,
"popularity": 50,
"tableSize": 100,
"tableType": "TABLE",
"url": "https://app.snowflake.com/",
"deletedAt": "2025-09-20T12:00:00.000Z",
"externalId": "customers",
"id": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"name": "customers"
}
Member Of
updateTablesmutation