Skip to main content

ProductBulkMoveError

Error information for a product that failed to move during bulk move operation.

Contains detailed error information including error codes, messages, and the affected product data.

type ProductBulkMoveError {
code: ProductBulkMoveErrorCode!
messages: [String!]!
record: JSON
rowNumber: Int
}

Fields

ProductBulkMoveError.code ● ProductBulkMoveErrorCode! non-null enum

Error code indicating the type of error that occurred.

Can be VALIDATION, DB_INSERT, or UNKNOWN.

ProductBulkMoveError.messages ● [String!]! non-null scalar

List of error messages describing what went wrong.

Provides detailed information about the failure to help with troubleshooting.

ProductBulkMoveError.record ● JSON scalar

The product record that failed to move.

Contains the original product data that was attempted to be moved, useful for identifying which product failed.

ProductBulkMoveError.rowNumber ● Int scalar

Row number in the input array where the error occurred.

Helps identify the position of the failed product in the bulk move request.

Member Of

ProductBulkMoveResponse object