checkoutAttributesUpdateMutation top-level constant

String const checkoutAttributesUpdateMutation

Mutation to update the attributes of a checkout

Implementation

const String checkoutAttributesUpdateMutation = r'''
mutation checkoutAttributesUpdateV2($checkoutId: ID!, $input: CheckoutAttributesUpdateV2Input!) {
  checkoutAttributesUpdateV2(checkoutId: $checkoutId, input: $input) {
    checkoutUserErrors {
      code
      field
      message
    }
  }
}
''';