UNPKG
portal-www
Version:
beta (1.74.0)
latest (1.74.0)
1.74.0
Nova Portal Website. Based on Next starter by Ueno
portal-www
/
src
/
graphql
/
queries
/
internalNotes.ts
15 lines
(13 loc)
•
262 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
gql
from
'graphql-tag'
;
export
const
InternalNotes
= gql`
query
InternalNotes
(
$input
: InternalNotesInput
!
)
{
internalNotes
(
input
:
$input
)
{
customerNationalId id note regardingId regardingType title
}
}
`
;