import gql from 'graphql-tag';

export const REMOVE_INTERNAL_NOTE = gql`
  mutation RemoveInternalNote($input: removeInternalNoteInput!) {
    removeInternalNote(input: $input) {
      message
    }
  }
`;

export const POST_INTERNAL_NOTE = gql`
  mutation PostInternalNote($input: InternalNoteInput!) {
    postInternalNote(input: $input) {
      customerNationalId
      id
      note
      regardingId
      regardingType
      title
    }
  }
`;
