Skip to content

NoteScheduler

Scheduled chat notes

Fields

first_four_invitees · [User!] · Scheduled messsage blast: get first four users
id · ID! · required · The unique identifier of the scheduler
invitees_count · Int · The number of invitees
last_task · Task · Get last conversation task
note · Note · The note
note_content · String · The content of the note
participant_ids · [ID] · Get all directly selected user ids
selected_user_groups · [UserGroup!] · Get all directly selected user groups
selected_users · [User!] · Get all directly selected users
updated_at · String! · required · The date and time when the scheduler was last updated.
user · User · Owner user of a note scheduler

Used By

Definition

"""
Scheduled chat notes
"""
type NoteScheduler {
"""
Scheduled messsage blast: get first four users
"""
first_four_invitees: [User!]
"""
The unique identifier of the scheduler
"""
id: ID!
"""
The number of invitees
"""
invitees_count: Int
"""
Get last conversation task
"""
last_task: Task
"""
The note
"""
note: Note
"""
The content of the note
"""
note_content: String
"""
Get all directly selected user ids
"""
participant_ids: [ID]
"""
Get all directly selected user groups
"""
selected_user_groups: [UserGroup!]
"""
Get all directly selected users
"""
selected_users: [User!]
"""
The date and time when the scheduler was last updated.
"""
updated_at: String!
"""
Owner user of a note scheduler
"""
user: User
}