Skip to content

TitleChangedEvent ​

Event representing that the title of an Issue changed. READ is granted if READ is granted on issue.

graphql
type TitleChangedEvent implements AuditedNode, BaseNode, Node, TimelineItem {
  createdAt: DateTime!
  createdBy: User!
  hasPermission(
    permission: AllPermissionEntry
  ): Boolean!
  id: ID!
  issue: Issue
  lastModifiedAt: DateTime!
  lastModifiedBy: User!
  newTitle: String!
  oldTitle: String!
  parentItem: ParentTimelineItem
}

Fields ​

TitleChangedEvent.createdAt ● DateTime! non-null scalar ​

The DateTime this entity was created at.

TitleChangedEvent.createdBy ● User! non-null interface ​

The User who created this entity.

TitleChangedEvent.hasPermission ● Boolean! non-null scalar ​

Checks if the current user has a specific permission on this Node

TitleChangedEvent.hasPermission.permission ● AllPermissionEntry enum ​

The permission to check for

TitleChangedEvent.id ● ID! non-null scalar ​

The unique id of this node

TitleChangedEvent.issue ● Issue object ​

The Issue this TimelineItem is part of.

TitleChangedEvent.lastModifiedAt ● DateTime! non-null scalar ​

The DateTime this entity was last modified at.

TitleChangedEvent.lastModifiedBy ● User! non-null interface ​

The User who last modified this entity.

TitleChangedEvent.newTitle ● String! non-null scalar ​

The new title.

TitleChangedEvent.oldTitle ● String! non-null scalar ​

The old title.

TitleChangedEvent.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

TimelineItem interface ​

Supertype of all timeline items. Always part of an Issue.

Member Of ​

ChangeIssueTitlePayload object

Implemented By ​

PublicTimelineItem union

Released under the MIT License.