Task
Tasks for providers to create, complete, and optionally assign to client profiles
Fields
assignees
· UserConnection
· The providers and staff who are assigned to this task completed_at
· ISO8601DateTime
· Date and time this task was completed completed_by_id
· ID
· User ID of the user who completed this task created_by_generator_id
· String
· ID of an auto generator created_by_id
· ID
· User id of user who created this task due_date
· ISO8601DateTime
· Date and time this task was is due to be complete Boolean!
· required · If true, hide completed task from top nav bar ref_source
· String
· ID of additional relation smart_category
· String
· Get category of smart task updated_at
· ISO8601DateTime
· The last date and time that the task was updated Used By
Definition
"""Tasks for providers to create, complete, and optionally assign to client profiles"""type Task { """ The providers and staff who are assigned to this task """ assignees( order_by: UserOrderKeys = LAST_NAME_ASC
""" Returns the elements in the list that come after the specified cursor. """ after: String
""" Returns the elements in the list that come before the specified cursor. """ before: String
""" Returns the first _n_ elements from the list. """ first: Int
""" Returns the last _n_ elements from the list. """ last: Int ): UserConnection
""" The client tagged to this task """ client: User
""" The identifier of the client tagged on this task """ client_id: ID
""" If true, user has marked task complete """ complete: Boolean
""" Date and time this task was completed """ completed_at: ISO8601DateTime
""" User ID of the user who completed this task """ completed_by_id: ID
""" Details describing this task """ content: String
""" Date and time this task was created """ created_at: ISO8601DateTime!
""" ID of an auto generator """ created_by_generator_id: String
""" User id of user who created this task """ created_by_id: ID
""" The user who created this task """ creator: User
""" Pagination cursor """ cursor: Cursor!
""" Date and time this task was is due to be complete """ due_date: ISO8601DateTime
""" If true, hide completed task from top nav bar """ hidden: Boolean!
""" The unique identifier of the task """ id: ID!
""" Get associated chat message with a task """ note: Note
""" Get relative path to view the note """ note_path: String
""" Order in which tasks are displayed (ascending) """ position: Int
""" Level of urgency for this task(0 = standard priority, 1 = high priority) """ priority: Int!
""" ID of additional relation """ ref_source: String
""" Reminder object for a given goal """ reminder: Reminder
""" If true, user has viewed this task in top navbar """ seen: Boolean!
""" Indicates to smart task """ smart: Boolean!
""" Get category of smart task """ smart_category: String
""" The last date and time that the task was updated """ updated_at: ISO8601DateTime
""" The first user assigned to the task """ user: User
""" User ID of the first user assigned to this task """ user_id: ID}