Skip to main content

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.

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