RemovedLabelEvent
Event representing that a Label was removed from an Issue.
READ is granted if READ is granted on issue
.
type RemovedLabelEvent implements AuditedNode, BaseNode, Node, TimelineItem {
createdAt: DateTime!
createdBy: User!
hasPermission(
permission: AllPermissionEntry
): Boolean!
id: ID!
issue: Issue
lastModifiedAt: DateTime!
lastModifiedBy: User!
parentItem: ParentTimelineItem
removedLabel: Label
}
Fields
RemovedLabelEvent.createdAt
● DateTime!
non-null scalar
The DateTime this entity was created at.
RemovedLabelEvent.createdBy
● User!
non-null interface
The User who created this entity.
RemovedLabelEvent.hasPermission
● Boolean!
non-null scalar
Checks if the current user has a specific permission on this Node
RemovedLabelEvent.hasPermission.permission
●AllPermissionEntry
enumThe permission to check for
RemovedLabelEvent.id
● ID!
non-null scalar
The unique id of this node
RemovedLabelEvent.issue
● Issue
object
The Issue this TimelineItem is part of.
RemovedLabelEvent.lastModifiedAt
● DateTime!
non-null scalar
The DateTime this entity was last modified at.
RemovedLabelEvent.lastModifiedBy
● User!
non-null interface
The User who last modified this entity.
RemovedLabelEvent.parentItem
● ParentTimelineItem
interface
If existing, the parent TimelineItem
RemovedLabelEvent.removedLabel
● Label
object
The Label removed from the Issue, null if deleted.
Interfaces
AuditedNode
interface
Node which provides auditing information, which can e.g. be used for the sync. When it was created and last modified, if the it is already deleted, and by who it was created and last modified. A modification is any change of a field on the node itself and a change of a relation (add or removed). A change on a related related node is not a modification.
BaseNode
interface
Shared extensions to the node type.
Node
interface
Base class of all nodes
TimelineItem
interface
Supertype of all timeline items. Always part of an Issue.
Member of
RemoveLabelFromIssuePayload
object
Implemented by
PublicTimelineItem
union