customerAccessTokenRenewMutation top-level constant

String const customerAccessTokenRenewMutation

Mutation to renew a customer access token

Implementation

const String customerAccessTokenRenewMutation = r'''
mutation customerAccessTokenRenew($customerAccessToken: String!) {
  customerAccessTokenRenew(customerAccessToken: $customerAccessToken) {
    customerAccessToken {
      accessToken
      expiresAt
    }
    userErrors {
      field
      message
    }
  }
}
''';