commerce/framework/shopify/utils/mutations/customer-access-token-delete.ts
2021-05-25 15:16:17 -03:00

15 lines
382 B
TypeScript

const customerAccessTokenDeleteMutation = /* GraphQL */ `
mutation customerAccessTokenDelete($customerAccessToken: String!) {
customerAccessTokenDelete(customerAccessToken: $customerAccessToken) {
deletedAccessToken
deletedCustomerAccessTokenId
userErrors {
field
message
}
}
}
`
export default customerAccessTokenDeleteMutation