Task
A task that can be assigned to a user and is associated with a taskable entity.
type Task {
archivedAt: ISO8601DateTime
assignee: Party
assigneeId: ID
brand: Brand @deprecated
brandId: ID @deprecated
createdAt: ISO8601DateTime!
deletedAt: ISO8601DateTime @deprecated
description: String
dueDate: ISO8601DateTime
id: ID!
priority: TaskPriorityEnum!
status: TaskStatusEnum!
taskable: Taskable!
taskableId: ID!
taskableType: TaskableTypeEnum!
title: String!
updatedAt: ISO8601DateTime!
}
Fields
Task.archivedAt ● ISO8601DateTime scalar common
The date and time when the task was archived.
Task.assignee ● Party object common
The party to whom the task is assigned
Task.assigneeId ● ID scalar common
Task.brand ● Brand deprecated object common
DEPRECATED
This field will be removed in the future. Brand is becoming a product-only attribute.
Task.brandId ● ID deprecated scalar common
DEPRECATED
This field will be removed in the future. Brand is becoming a product-only attribute.
Task.createdAt ● ISO8601DateTime! non-null scalar common
Task.deletedAt ● ISO8601DateTime deprecated scalar common
DEPRECATED
Use archived_at instead. This field will be removed in the future.
The date and time when the task was deleted.
Task.description ● String scalar common
Task.dueDate ● ISO8601DateTime scalar common
Task.id ● ID! non-null scalar common
Task.priority ● TaskPriorityEnum! non-null enum common
Task.status ● TaskStatusEnum! non-null enum common
Task.taskable ● Taskable! non-null union common
The taskable entity to which the task is associated
Task.taskableId ● ID! non-null scalar common
Task.taskableType ● TaskableTypeEnum! non-null enum common
Task.title ● String! non-null scalar common
Task.updatedAt ● ISO8601DateTime! non-null scalar common
Returned By
task query ● taskAdd mutation ● tasks query ● taskUpdate mutation