CancelOrderOutput
Contains the updated customer order and error message if any.
type CancelOrderOutput = {
__typename?: 'CancelOrderOutput'; /** Error encountered while cancelling the order. */
error?: Maybe<Scalars['String']['output']>;
errorV2?: Maybe<CancelOrderError>; /** Updated customer order. */
order?: Maybe<CustomerOrder>;
};