import gql from 'graphql-tag';

export const SERVICES = gql`
  query CustomerServices($input: CustomerServicesInput!) {
    customerServices(input: $input) {
      services {
        id
        name
        nickname
        type
        status
        allocatedFrom
        allocatedTo
        user {
          id
          nationalId
          name
          nickname
          email
        }
      }
    }
  }
`;
