portal-www
Version:
Nova Portal Website. Based on Next starter by Ueno
23 lines (20 loc) • 450 B
text/typescript
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
}
}
`;