Skip to main content

NamedAffectedByIssue

Affected by issue with a name and description

interface NamedAffectedByIssue implements AffectedByIssue, BaseNode, Named, 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

NamedAffectedByIssue.affectingIssues ● IssueConnection! non-null object

The issues which affect this entity

NamedAffectedByIssue.affectingIssues.after ● String scalar

Get only items after the cursor

NamedAffectedByIssue.affectingIssues.before ● String scalar

Get only items before the cursor

NamedAffectedByIssue.affectingIssues.filter ● IssueFilterInput input

Filter for specific items in the connection

NamedAffectedByIssue.affectingIssues.first ● Int scalar

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

NamedAffectedByIssue.affectingIssues.last ● Int scalar

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

NamedAffectedByIssue.affectingIssues.orderBy ● [IssueOrder!] list input

Order in which the items are sorted

NamedAffectedByIssue.affectingIssues.skip ● Int scalar

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

NamedAffectedByIssue.description ● String! non-null scalar

The description of this entity.

NamedAffectedByIssue.hasPermission ● Boolean! non-null scalar

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

NamedAffectedByIssue.hasPermission.permission ● AllPermissionEntry enum

The permission to check for

NamedAffectedByIssue.id ● ID! non-null scalar

The unique id of this node

NamedAffectedByIssue.name ● String! non-null scalar

The name of this entity.

Interfaces

AffectedByIssue interface

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.

BaseNode interface

Shared extensions to the node type.

Named interface

Entity with a name and a description.

Node interface

Base class of all nodes

Implemented by

Component object ● InterfacePart object ● InterfaceSpecification object ● Project object ● Trackable interface