IncomingRelationTypeChangedEvent
Event representing that the type of an incoming IssueRelation changed.
READ is granted if READ is granted on issueRelation.
type IncomingRelationTypeChangedEvent implements AuditedNode, BaseNode, Node, RelationTypeChangedEvent, TimelineItem {
  createdAt: DateTime!
  createdBy: User!
  hasPermission(
    permission: AllPermissionEntry
  ): Boolean!
  id: ID!
  issue: Issue
  issueRelation: IssueRelation!
  lastModifiedAt: DateTime!
  lastModifiedBy: User!
  newType: IssueRelationType
  oldType: IssueRelationType
  parentItem: ParentTimelineItem
}
Fields
IncomingRelationTypeChangedEvent.createdAt ● DateTime! non-null scalar
The DateTime this entity was created at.
IncomingRelationTypeChangedEvent.createdBy ● User! non-null interface
The User who created this entity.
IncomingRelationTypeChangedEvent.hasPermission ● Boolean! non-null scalar
Checks if the current user has a specific permission on this Node
IncomingRelationTypeChangedEvent.hasPermission.permission●AllPermissionEntryenumThe permission to check for
IncomingRelationTypeChangedEvent.id ● ID! non-null scalar
The unique id of this node
IncomingRelationTypeChangedEvent.issue ● Issue object
The Issue this TimelineItem is part of.
IncomingRelationTypeChangedEvent.issueRelation ● IssueRelation! non-null object
The IssueRelation of which the type was changed
IncomingRelationTypeChangedEvent.lastModifiedAt ● DateTime! non-null scalar
The DateTime this entity was last modified at.
IncomingRelationTypeChangedEvent.lastModifiedBy ● User! non-null interface
The User who last modified this entity.
IncomingRelationTypeChangedEvent.newType ● IssueRelationType object
The new type.
IncomingRelationTypeChangedEvent.oldType ● IssueRelationType object
The old type.
IncomingRelationTypeChangedEvent.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
RelationTypeChangedEvent interface
Event representing that the type of an IssueRelation changed.
TimelineItem interface
Supertype of all timeline items. Always part of an Issue.
Implemented by
PublicTimelineItem  union