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.
interface AffectedByIssue implements BaseNode, Named, NamedNode, Node {
affectingIssues(
after: String
before: String
filter: IssueFilterInput
first: Int
last: Int
orderBy: [IssueOrder!]
skip: Int
): IssueConnection!
description: String!
hasPermission(
permission: AllPermissionEntry
): Boolean!
id: ID!
name: String!
}
Fields
AffectedByIssue.affectingIssues
● IssueConnection!
non-null object
The issues which affect this entity
AffectedByIssue.affectingIssues.after
●String
scalarGet 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.description
● String!
non-null scalar
The description of this entity.
AffectedByIssue.hasPermission
● Boolean!
non-null scalar
Checks if the current user has a specific permission on this Node
AffectedByIssue.hasPermission.permission
●AllPermissionEntry
enumThe permission to check for
AffectedByIssue.id
● ID!
non-null scalar
The unique id of this node
AffectedByIssue.name
● String!
non-null scalar
The name of this entity.
Interfaces
BaseNode
interface
Shared extensions to the node type.
Named
interface
Entity with a name and a description.
NamedNode
interface
Node with a name and description
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 ● Project
object ● RelationPartner
interface ● Trackable
interface