PlaceOrderOutput
Contains the results of the request to place an order.
type PlaceOrderOutput = {
__typename?: 'PlaceOrderOutput'; /** An array of place order errors. */
errors: Array<Maybe<PlaceOrderError>>;
order?: Maybe<Order>; /** Full order information. */
orderV2?: Maybe<CustomerOrder>;
};