Status
Represents information about a status.
type Status {
id: ID!
module: StatusModule!
name: String
color: String
description: String
type: StatusType!
isDefault: Boolean
sortOrder: Int
createdAt: DateTimeTz!
updatedAt: DateTimeTz!
deletedAt: DateTimeTz
}
Fields
Status.id ● ID! non-null scalar
Status's unique identifier.
Status.module ● StatusModule! non-null enum
The module of the status. Example: projects
Status.name ● String scalar
The name of the status. Example: In Progress
Status.color ● String scalar
The color of the status. In hex format, without the leading '#'. Example: 0366d6
Status.description ● String scalar
The description of the status.
Status.type ● StatusType! non-null enum
True type of the status.
Status.isDefault ● Boolean scalar
Whether the given status should be handled as a default for new entries.
Status.sortOrder ● Int scalar
The order/placement of the status.
Status.createdAt ● DateTimeTz! non-null scalar
The date and time when the status was created.
Status.updatedAt ● DateTimeTz! non-null scalar
The date and time when the status was last updated.
Status.deletedAt ● DateTimeTz scalar
The date and time when the status was deleted.
Returned By
createStatus mutation ● deleteStatus mutation ● restoreStatus mutation ● status query ● updateStatus mutation
Member Of
StatusEdge object