graycoreio/daffodil

View on GitHub
libs/geography/driver/magento/src/queries/get-countries.ts

Summary

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

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

export const MAGENTO_GET_COUNTRIES_QUERY_NAME = 'MagentoGetCountries';

export const getCountries = gql`
  query ${MAGENTO_GET_COUNTRIES_QUERY_NAME} {
    countries {
      ...country
    }
  }
  ${countryFragment}
`;