import gql from 'graphql-tag';

export const LegalEntities = gql`
  query LegalEntities($input: CustomerByNationalIdInput!) {
    legalEntities(input: $input) {
      name
      isCustomer
      isChild
      customer {
        id
        email
      }
    }
  }
`;
