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.

CreateColumnInput

Input object expected by the query or mutation

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

Fields

CreateColumnInput.deletedAt ● DateTime scalar general

If present, indicates when the column was deleted

CreateColumnInput.externalDescription ● String scalar general

The external documentation for this column

CreateColumnInput.sourceOrder ● Int scalar general

The original column position index as imported from the source warehouse

CreateColumnInput.dataType ● String! non-null scalar general

The data type for the column. For example: INTEGER

CreateColumnInput.externalId ● String! non-null scalar general

The technical column identifier from the warehouse internal structure

CreateColumnInput.isNullable ● Boolean! non-null scalar general

True if this column is nullable

CreateColumnInput.name ● String! non-null scalar general

The column name

CreateColumnInput.tableId ● String! non-null scalar general

The column belongs to this table ID

CreateColumnInput.isPii ● Boolean scalar general

The PII status to apply to the column

CreateColumnInput.isPrimaryKey ● Boolean scalar general

The PrimaryKey status to apply to the column

Example

Member Of