ProductCsvMapping
Mapping configuration for product CSV import fields.
Defines how CSV column headers correspond to product properties during bulk import operations. Each mapping connects a CSV column to a specific product field.
input ProductCsvMapping {
csvHeader: String!
fieldName: ProductFieldName!
}
Fields
ProductCsvMapping.csvHeader
● String!
non-null scalar
Name of the column header in the CSV file.
Exact column header text from the CSV file that contains the data to be imported. Must match the header exactly as it appears in the first row of the CSV file. Cannot be empty.
ProductCsvMapping.fieldName
● ProductFieldName!
non-null enum
Target product field for the CSV data.
Specifies which product property this CSV column should populate during import. Must be a valid product field that supports the data type and format provided in the CSV column.
Member Of
ProductCsvInput
input