import gql from 'graphql-tag';

export const CONTACT_INFO = gql`
  fragment ContactFragment on ContactInfo {
    id
    name
    msisdn
    ssn
    address
    zip
    email
    salesNumber
  }
`;
