CheckoutUserInputError
An error encountered while adding an item to the cart.
type CheckoutUserInputError = {
__typename?: 'CheckoutUserInputError'; /** An error code that is specific to Checkout. */
code: CheckoutUserInputErrorCodes; /** A localized error message. */
message: Scalars['String']['output']; /** The path to the input field that caused an error. See the GraphQL specification about path errors for details: http://spec.graphql.org/draft/#sec-Errors */
path: Array<Maybe<Scalars['String']['output']>>;
};