Skip to main content

TaskType

Represents information about a task type.

type TaskType {
id: ID!
name: String
group: TypeGroup
groupId: ID
sortOrder: Int
createdAt: DateTimeTz!
updatedAt: DateTimeTz!
deletedAt: DateTimeTz
}

Fields

TaskType.id ● ID! non-null scalar

Task type's unique identifier.

TaskType.name ● String scalar

The task type's name.

TaskType.group ● TypeGroup object

The group this type belongs to.

TaskType.groupId ● ID scalar

The identifier of the group this type belongs to.

TaskType.sortOrder ● Int scalar

The order/placement of the type within its group.

TaskType.createdAt ● DateTimeTz! non-null scalar

The date and time when the task type was created.

TaskType.updatedAt ● DateTimeTz! non-null scalar

The date and time when the task type was last updated.

TaskType.deletedAt ● DateTimeTz scalar

The date and time when the task type was deleted.

Returned By

createTaskType mutation ● deleteTaskType mutation ● restoreTaskType mutation ● taskType query ● updateTaskType mutation

Member Of

Task object ● TaskTypeEdge object