OBJECT
Task
Task of the Assignar platform.
link GraphQL Schema definition
- type Task {
- # Unique task ID.
- Int! :
- # Task name.
- String! :
- # An ID used to link this task to an external application.
- String :
- # The user that last modified this order.
- User :
- # The time this order was last modified.
- DateTime :
- # The time this task was deleted.
- DateTime :
- # Depending on this selection, either assets or skills will be available for
- # association.
- # If required, and no assets selected, all will be associated to the task.
- Boolean! :
- # True if this task is active and visible in the UI, false otherwise.
- Boolean! :
- # The charge code for this task.
- ChargeCode :
- # True if the worker assigned to this task can add timesheets for everyone
- # assigned to the related order for that day, false otherwise.
- Boolean! :
- # The number of assets that are associated with this task.
- Int! :
- # The assets associated with this task.
- Asset] : [
- # The skills associated with this task.
- Skill] : [
- # The suppliers associated with this task.
- Supplier] : [
- # The forms associated with this task.
- Form] : [
- # Digital Docket Templates assigned to this task.
- DigitalDocketTemplate] : [
- }
link Require by
- DigitalDocketWorkerThe digital docket worker
- OrderOrder of the Assignar platform.
- OrderTaskA single order task
- OrderTemplateTaskA order task with template details and task timing conditions
- QueryRoot of the Assignar Core Query API
- TaskAssetAn asset's association with a task
- TaskGroupTask groups of the Assignar platform.
- TimesheetTimesheet record
- UserUser of the Assignar platform.