TimelineItem
Supertype of all timeline items. Always part of an Issue.
interface TimelineItem implements AuditedNode, BaseNode, Node {
createdAt: DateTime!
createdBy: User!
hasPermission(
permission: AllPermissionEntry
): Boolean!
id: ID!
issue: Issue
lastModifiedAt: DateTime!
lastModifiedBy: User!
parentItem: ParentTimelineItem
}
Fields
TimelineItem.createdAt
● DateTime!
non-null scalar
The DateTime this entity was created at.
TimelineItem.createdBy
● User!
non-null interface
The User who created this entity.
TimelineItem.hasPermission
● Boolean!
non-null scalar
Checks if the current user has a specific permission on this Node
TimelineItem.hasPermission.permission
●AllPermissionEntry
enumThe permission to check for
TimelineItem.id
● ID!
non-null scalar
The unique id of this node
TimelineItem.issue
● Issue
object
The Issue this TimelineItem is part of.
TimelineItem.lastModifiedAt
● DateTime!
non-null scalar
The DateTime this entity was last modified at.
TimelineItem.lastModifiedBy
● User!
non-null interface
The User who last modified this entity.
TimelineItem.parentItem
● ParentTimelineItem
interface
If existing, the parent TimelineItem
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
Member of
TimelineItemConnection
object ● TimelineItemEdge
object
Implemented by
AbstractTypeChangedEvent
interface ● AddedAffectedEntityEvent
object ● AddedArtefactEvent
object ● AddedLabelEvent
object ● AddedToPinnedIssuesEvent
object ● AddedToTrackableEvent
object ● Assignment
object ● AssignmentTypeChangedEvent
object ● Body
object ● Comment
interface ● IncomingRelationTypeChangedEvent
object ● IssueComment
object ● IssueRelation
object ● OutgoingRelationTypeChangedEvent
object ● ParentTimelineItem
interface ● PriorityChangedEvent
object ● RelatedByIssueEvent
object ● RelationTypeChangedEvent
interface ● RemovedAffectedEntityEvent
object ● RemovedArtefactEvent
object ● RemovedAssignmentEvent
object ● RemovedFromPinnedIssuesEvent
object ● RemovedFromTrackableEvent
object ● RemovedIncomingRelationEvent
object ● RemovedLabelEvent
object ● RemovedOutgoingRelationEvent
object ● RemovedRelationEvent
interface ● RemovedTemplatedFieldEvent
object ● StateChangedEvent
object ● TemplateChangedEvent
object ● TemplatedFieldChangedEvent
object ● TitleChangedEvent
object ● TypeChangedEvent
object