graycoreio/daffodil

View on GitHub
libs/customer/driver/magento/src/queries/delete-customer-address.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { gql } from 'apollo-angular';

export const deleteCustomerAddress = gql`
  mutation MagentoDeleteCustomerAddress($id: Int!) {
    deleteCustomerAddress(id: $id)
  }
`;