Skip to main content

ProductBulkMoveResponse

Response for bulk product move operations.

Provides detailed feedback on the bulk move operation including the count of successfully moved products and any errors encountered during processing.

type ProductBulkMoveResponse {
movedCount: Int!
errors: [ProductBulkMoveError!]!
}

Fields

ProductBulkMoveResponse.movedCount ● Int! non-null scalar

Number of products successfully moved to their target categories.

Represents the total count of products that were successfully relocated during the bulk move operation.

ProductBulkMoveResponse.errors ● [ProductBulkMoveError!]! non-null object

Collection of errors encountered during the bulk move operation.

Contains detailed error information for any products that failed to move, including error codes, messages, and the affected product data.

Returned By

productBulkMove mutation