Skip to content

AffectedByIssue ​

Entities that can be affected by an Issue, meaning that this entity is in some regard impacted by e.g. a bug described by an issue, or the non-present of a feature described by an issue.

graphql
interface AffectedByIssue implements BaseNode, Node {
  affectingIssues(
    after: String
    before: String
    filter: IssueFilterInput
    first: Int
    last: Int
    orderBy: [IssueOrder!]
    skip: Int
  ): IssueConnection!
  hasPermission(
    permission: AllPermissionEntry
  ): Boolean!
  id: ID!
}

Fields ​

AffectedByIssue.affectingIssues ● IssueConnection! non-null object ​

The issues which affect this entity

AffectedByIssue.affectingIssues.after ● String scalar ​

Get only items after the cursor

AffectedByIssue.affectingIssues.before ● String scalar ​

Get only items before the cursor

AffectedByIssue.affectingIssues.filter ● IssueFilterInput input ​

Filter for specific items in the connection

AffectedByIssue.affectingIssues.first ● Int scalar ​

Get the first n items. Must not be used if before is specified

AffectedByIssue.affectingIssues.last ● Int scalar ​

Get the last n items. Must not be used if after is specified

AffectedByIssue.affectingIssues.orderBy ● [IssueOrder!] list input ​

Order in which the items are sorted

AffectedByIssue.affectingIssues.skip ● Int scalar ​

Skips n items. First or last MUST be specified, is otherwise ignored

AffectedByIssue.hasPermission ● Boolean! non-null scalar ​

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

AffectedByIssue.hasPermission.permission ● AllPermissionEntry enum ​

The permission to check for

AffectedByIssue.id ● ID! non-null scalar ​

The unique id of this node

Interfaces ​

BaseNode interface ​

Shared extensions to the node type.

Node interface ​

Base class of all nodes

Returned By ​

searchAffectedByIssues query

Member Of ​

AddedAffectedEntityEvent object ● AffectedByIssueConnection object ● AffectedByIssueEdge object ● RemovedAffectedEntityEvent object

Implemented By ​

Component object ● ComponentVersion object ● Interface object ● InterfacePart object ● InterfaceSpecification object ● InterfaceSpecificationVersion object ● NamedAffectedByIssue interface ● Project object ● RelationPartner interface ● Trackable interface

Released under the MIT License.