Skip to main content

ClusterBulkMoveError

Error information for a failed cluster move operation.

Contains details about what went wrong when attempting to move a cluster, including error codes, messages, and the affected cluster record.

type ClusterBulkMoveError {
code: ClusterBulkMoveErrorCode!
messages: [String!]!
record: String
rowNumber: Int
}

Fields

ClusterBulkMoveError.code ● ClusterBulkMoveErrorCode! non-null enum

Error code indicating the type of error.

Can be VALIDATION, DB_INSERT, or UNKNOWN.

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

List of error messages.

Human-readable error messages describing what went wrong during the cluster move operation.

ClusterBulkMoveError.record ● String scalar

The cluster record that failed.

JSON representation of the cluster data that caused the error, if available.

ClusterBulkMoveError.rowNumber ● Int scalar

Row number in the input array.

The position of the failed cluster in the input array, useful for identifying which cluster move operation failed.

Member Of

ClusterBulkMoveResponse object