Skip to main content

Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.

UpdateColumnInput

Input object expected by the query or mutation

input UpdateColumnInput {
deletedAt: DateTime
externalDescription: String
sourceOrder: Int
dataType: String
externalId: String
id: String!
isNullable: Boolean
isPii: Boolean
isPrimaryKey: Boolean
name: String
}

Fields

UpdateColumnInput.deletedAt ● DateTime scalar general

If present, indicates when the column was deleted

UpdateColumnInput.externalDescription ● String scalar general

The external documentation for this column

UpdateColumnInput.sourceOrder ● Int scalar general

The original column position index as imported from the source warehouse

UpdateColumnInput.dataType ● String scalar general

The data type for the column. For example: INTEGER

UpdateColumnInput.externalId ● String scalar general

The technical column identifier from the warehouse structure

UpdateColumnInput.id ● String! non-null scalar general

The id of the column you are looking for

UpdateColumnInput.isNullable ● Boolean scalar general

True if this column is nullable

UpdateColumnInput.isPii ● Boolean scalar general

The PII status to apply to the column

UpdateColumnInput.isPrimaryKey ● Boolean scalar general

The PrimaryKey status to apply to the column

UpdateColumnInput.name ● String scalar general

The column name

Example

Member Of