NoteScheduler
Scheduled chat notes
Fields
first_four_invitees
· [User!]
· Scheduled messsage blast: get first four users invitees_count
· Int
· The number of invitees 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 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}