import gql from 'graphql-tag';

export const InternalNotes = gql`
  query InternalNotes($input: InternalNotesInput!) {
    internalNotes(input: $input) {
      customerNationalId
      id
      note
      regardingId
      regardingType
      title
    }
  }
`;
