graycoreio/daffodil

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

Summary

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

import { magentoCustomerAddressFragment } from './fragments/public_api';

export const createCustomerAddress = gql`
  mutation MagentoCreateCustomerAddress($input: CustomerAddressInput!) {
    createCustomerAddress(input: $input) {
      ...magentoCustomerAddress
    }
  }
  ${magentoCustomerAddressFragment}
`;