ImageCsvMapping
Mapping configuration between CSV column headers and image entity fields
input ImageCsvMapping {
csvHeader: String!
fieldName: ImageFieldName!
}
Fields
ImageCsvMapping.csvHeader
● String!
non-null scalar
Name of the column header in the CSV file.
Must exactly match the column header in the uploaded CSV file. Used to identify which CSV column contains the data for the corresponding image field.
ImageCsvMapping.fieldName
● ImageFieldName!
non-null enum
Target image field that will receive the CSV column data.
Specifies which image entity field should be populated with the data from the corresponding CSV column. Each field has specific validation requirements and data format expectations.
Member Of
ImageCsvInput
input