checkoutCompleteFreeMutation top-level constant

String const checkoutCompleteFreeMutation

Mutation to complete a checkout with free shipping

Implementation

const String checkoutCompleteFreeMutation = r'''
mutation checkoutCompleteFree($checkoutId: ID!) {
  checkoutCompleteFree(checkoutId: $checkoutId) {
    checkout {
      id
    }
    checkoutUserErrors {
      code
      field
      message
    }
  }
}
''';