Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.
CreateDatabaseInput
Input object expected by the query or mutation
input CreateDatabaseInput {
deletedAt: DateTime
description: String
isHidden: Boolean
externalId: String!
name: String!
sourceId: String!
}
Fields
CreateDatabaseInput.deletedAt ● DateTime scalar general
If present, indicates when the database was deleted
CreateDatabaseInput.description ● String scalar general
The Catalog documentation for this database (max length: 500)
CreateDatabaseInput.isHidden ● Boolean scalar general
Indicate if the database should be hidden
CreateDatabaseInput.externalId ● String! non-null scalar general
The technical database identifier from the warehouse structure
CreateDatabaseInput.name ● String! non-null scalar general
The database name
CreateDatabaseInput.sourceId ● String! non-null scalar general
The id of the parent warehouse
Example
{
"deletedAt": "2025-09-20T12:00:00.000Z",
"description": "Contains customer information",
"isHidden": false,
"externalId": "customers",
"name": "Customers",
"sourceId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba"
}
Member Of
createDatabasesmutation