OBJECT
Note
Chat message object
link GraphQL Schema definition
- type Note {
- # url for note audio
- String :
- # url for note image
- String :
- # note content
- String :
- # conversation id
- ID :
- # The time at which this note was created
- String :
- # User who created note
- User :
- # True if this note deleted by a user
- Boolean :
- # id for note document
- ID :
- # Name of attached document
- String :
- # The unique identifier of the note
- ID! :
- # Name of attached image
- String :
- # True if this note is using as auto response message
- Boolean :
- # A User which created a Note on behalf of a Conversation Owner
- User :
- # receiver of note
- ID @deprecated( reason: "Use conversation_memberships of conversation instead" ) :
- # Scheduled sent at
- String :
- # Get associated task with a chat message
- Task :
- # The time at which this note was updated or marked as deleted by a user
- String :
- # creator of note
- ID :
- # conditional to see if user recipient viewd note. In community chats, you need to
- # pass in a viewer_id
- #
- # Arguments
- # viewer_id: ID of the user that you want to check has viewed the
- # note
- ID): Boolean ( :
- }
link Require by
- ConversationAn association between conversation holders
- createNotePayloadAutogenerated return type of createNote.
- deleteNotePayloadAutogenerated return type of deleteNote.
- NoteSchedulerScheduled chat notes
- QueryThe query root of this schema. See available queries.
- SubscriptionSubscriptions for events tracking
- TaskTasks for providers to create, complete, and optionally assign to client profiles
- updateNotePayloadAutogenerated return type of updateNote.