Skip to content

AutoTaskGenerator

The auto task generators belonging to a specific user

Fields

category · String! · required · Category of task
created_at · ISO8601DateTime! · required · The date and time that the task was created
days_due_from_created_at · Int · The number of days the task is due from the date it was created
id · ID! · required · The unique identifier of the generator
is_enabled · Boolean! · required · True if task is active
number_description · String · Description of the number to check
number_to_check · Float! · required · The number to check
task_description · String! · required · Description of the task
updated_at · ISO8601DateTime! · required · The last date and time that the task was updated
user_id · String · The id of the user who creates the task
user_id_for_task · String · The id of the user

Used By

Definition

"""
The auto task generators belonging to a specific user
"""
type AutoTaskGenerator {
"""
Category of task
"""
category: String!
"""
The date and time that the task was created
"""
created_at: ISO8601DateTime!
"""
The number of days the task is due from the date it was created
"""
days_due_from_created_at: Int
"""
The unique identifier of the generator
"""
id: ID!
"""
True if task is active
"""
is_enabled: Boolean!
"""
Description of the number to check
"""
number_description: String
"""
The number to check
"""
number_to_check: Float!
"""
Description of the task
"""
task_description: String!
"""
The last date and time that the task was updated
"""
updated_at: ISO8601DateTime!
"""
The id of the user who creates the task
"""
user_id: String
"""
The id of the user
"""
user_id_for_task: String
}