import { userFragment } from 'graphql/fragments/user';
import gql from 'graphql-tag';

export const CUSTOMER_PROFILES = gql`
  query customerProfiles($accountInput: AccountInput) {
    me(input: $accountInput) {
      ...UserFragment
      customerProfiles {
        nationalId
        name
      }
    }
  }
  ${userFragment}
`;
