CategoryCsvMapping
Mapping configuration for CSV column to system field.
Defines how a specific CSV column maps to a category field in the system. Ensures proper data import by specifying the relationship between CSV headers and system fields.
input CategoryCsvMapping {
csvHeader: String!
fieldName: CategoryFieldName!
}
Fields
CategoryCsvMapping.csvHeader
● String!
non-null scalar
CSV column header name.
The exact name of the column header in the CSV file. Must match the header name exactly (case-sensitive). Cannot be empty or contain only whitespace.
CategoryCsvMapping.fieldName
● CategoryFieldName!
non-null enum
Propeller eCommerce Platform field for the CSV column.
The corresponding field in the Propeller eCommerce Platform where the CSV column data will be imported. Must be a valid CategoryFieldName enum value. Each field has specific validation rules and constraints.
Member Of
CategoryCsvInput
input