ClusterCsvInput
Input for bulk cluster import from CSV file.
Enables bulk creation of clusters through CSV file upload with customizable field mappings. Supports validation, error reporting, and flexible column mapping for different CSV formats.
input ClusterCsvInput {
file: Upload!
mappings: [ClusterCsvMapping!]
}
Fields
ClusterCsvInput.file ● Upload! non-null scalar
CSV file containing cluster data.
The CSV file must contain valid cluster information with proper headers. File must be in CSV format with UTF-8 encoding.
ClusterCsvInput.mappings ● [ClusterCsvMapping!] list input
Column mapping configuration for CSV import.
Defines how CSV columns map to cluster fields in the system. Each mapping specifies the CSV header name and corresponding system field. Mappings must be unique and follow the defined field constraints.
Member Of
clusterCsvImport mutation