AggregatedIssueRelation
An aggregated IssueRelation. IssueRelations are aggregated by both start and end Issue.
type AggregatedIssueRelation implements BaseNode, Node {
  count: Int!
  end: AggregatedIssue!
  hasPermission(
    permission: AllPermissionEntry
  ): Boolean!
  id: ID!
  issueRelations(
    after: String
    before: String
    filter: IssueRelationFilterInput
    first: Int
    last: Int
    orderBy: [IssueRelationOrder!]
    skip: Int
  ): IssueRelationConnection!
  start: AggregatedIssue!
  type: IssueRelationType
}
Fields
AggregatedIssueRelation.count ● Int! non-null scalar
AggregatedIssueRelation.end ● AggregatedIssue! non-null object
The end of this AggregatedIssueRelation.
AggregatedIssueRelation.hasPermission ● Boolean! non-null scalar
Checks if the current user has a specific permission on this Node
AggregatedIssueRelation.hasPermission.permission●AllPermissionEntryenumThe permission to check for
AggregatedIssueRelation.id ● ID! non-null scalar
The unique id of this node
AggregatedIssueRelation.issueRelations ● IssueRelationConnection! non-null object
The IssueRelations aggregated by this AggregatedIssueRelation.
AggregatedIssueRelation.issueRelations.after●StringscalarGet only items after the cursor
AggregatedIssueRelation.issueRelations.before ● String scalar
Get only items before the cursor
AggregatedIssueRelation.issueRelations.filter ● IssueRelationFilterInput input
Filter for specific items in the connection
AggregatedIssueRelation.issueRelations.first ● Int scalar
Get the first n items. Must not be used if before is specified
AggregatedIssueRelation.issueRelations.last ● Int scalar
Get the last n items. Must not be used if after is specified
AggregatedIssueRelation.issueRelations.orderBy ● [IssueRelationOrder!] list input
Order in which the items are sorted
AggregatedIssueRelation.issueRelations.skip ● Int scalar
Skips n items. First or last MUST be specified, is otherwise ignored
AggregatedIssueRelation.start ● AggregatedIssue! non-null object
The start of this AggregatedIssueRelation.
AggregatedIssueRelation.type ● IssueRelationType object
The IssueType of this AggregatedIssue.
Interfaces
BaseNode interface
Shared extensions to the node type.
Node interface
Base class of all nodes
Member of
AggregatedIssueRelationConnection  object ● AggregatedIssueRelationEdge  object