Skip to content

Commit

Permalink
feat(core): add delete address mutation (#759)
Browse files Browse the repository at this point in the history
  • Loading branch information
bc-alexsaiannyi committed Apr 17, 2024
1 parent 622f257 commit 3602d91
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/green-pets-sneeze.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@bigcommerce/catalyst-core": patch
---

Add delete customer address mutation
47 changes: 47 additions & 0 deletions apps/core/client/mutations/delete-customer-address.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import { getSessionCustomerId } from '~/auth';

import { client } from '..';
import { graphql, VariablesOf } from '../graphql';

const DELETE_CUSTOMER_ADDRESS_MUTATION = graphql(`
mutation DeleteCustomerAddress(
$reCaptcha: ReCaptchaV2Input
$input: DeleteCustomerAddressInput!
) {
customer {
deleteCustomerAddress(reCaptchaV2: $reCaptcha, input: $input) {
errors {
__typename
... on CustomerAddressDeletionError {
__typename
message
}
... on CustomerNotLoggedInError {
__typename
message
}
}
}
}
}
`);

type AddressId = VariablesOf<typeof DELETE_CUSTOMER_ADDRESS_MUTATION>['input']['addressEntityId'];

export const deleteCustomerAddress = async (addressId: AddressId, reCaptchaToken?: string) => {
const customerId = await getSessionCustomerId();

const response = await client.fetch({
document: DELETE_CUSTOMER_ADDRESS_MUTATION,
customerId,
fetchOptions: { cache: 'no-store' },
variables: {
input: {
addressEntityId: addressId,
},
...(reCaptchaToken && { reCaptcha: { token: reCaptchaToken } }),
},
});

return response.data;
};

0 comments on commit 3602d91

Please sign in to comment.