ImageCsvInput
Input for bulk importing images from a CSV file with field mapping configuration
input ImageCsvInput {
file: Upload!
mappings: [ImageCsvMapping!]
}
Fields
ImageCsvInput.file ● Upload! non-null scalar
CSV file containing image data for bulk import.
Must be a valid CSV file with headers that match the configured field mappings. Each row represents one image to be created with the specified metadata and file references.
The file may contain at most 10,000 data rows, excluding the header row. A larger file is rejected with CSV_ROW_LIMIT_ERROR, and a file with no data rows is rejected with CSV_EMPTY_FILE_ERROR.
ImageCsvInput.mappings ● [ImageCsvMapping!] list input
Configuration mapping CSV columns to image entity fields.
Defines how CSV column headers correspond to image fields. If not provided, the system will attempt to auto-map based on standard column names. Each mapping must be unique and valid.
Member Of
mediaImageCsvImport mutation