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
{
"deletedAt": "2025-09-20T12:00:00.000Z",
"externalDescription": "Contains customer email",
"sourceOrder": 0,
"dataType": "STRING",
"externalId": "customer.email",
"isNullable": true,
"name": "email",
"tableId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"isPii": true,
"isPrimaryKey": true
}
Member Of
createColumnsmutation