Skip to content

IssueBoardColumn ​

A column on an Issue Board. An Issue Board Column consists of a name, a description and a position. Issues are assigned to a column by their state: an Issue is shown in the column the Issue's state is assigned to. READ is granted if READ is granted on the Trackable of the Issue Board.

graphql
type IssueBoardColumn implements BaseNode, Named, NamedNode, Node {
  description: String!
  hasPermission(
    permission: AllPermissionEntry
  ): Boolean!
  id: ID!
  issueBoard: IssueBoard!
  issueStates(
    after: String
    before: String
    filter: IssueStateFilterInput
    first: Int
    last: Int
    orderBy: [IssueStateOrder!]
    skip: Int
  ): IssueStateConnection!
  name: String!
  position: Float!
}

Fields ​

IssueBoardColumn.description ● String! non-null scalar ​

The description of this entity.

IssueBoardColumn.hasPermission ● Boolean! non-null scalar ​

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

IssueBoardColumn.hasPermission.permission ● AllPermissionEntry enum ​

The permission to check for

IssueBoardColumn.id ● ID! non-null scalar ​

The unique id of this node

IssueBoardColumn.issueBoard ● IssueBoard! non-null object ​

The Issue Board this column belongs to

IssueBoardColumn.issueStates ● IssueStateConnection! non-null object ​

The Issue States assigned to this column

IssueBoardColumn.issueStates.after ● String scalar ​

Get only items after the cursor

IssueBoardColumn.issueStates.before ● String scalar ​

Get only items before the cursor

IssueBoardColumn.issueStates.filter ● IssueStateFilterInput input ​

Filter for specific items in the connection

IssueBoardColumn.issueStates.first ● Int scalar ​

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

IssueBoardColumn.issueStates.last ● Int scalar ​

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

IssueBoardColumn.issueStates.orderBy ● [IssueStateOrder!] list input ​

Order in which the items are sorted

IssueBoardColumn.issueStates.skip ● Int scalar ​

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

IssueBoardColumn.name ● String! non-null scalar ​

The name of this entity.

IssueBoardColumn.position ● Float! non-null scalar ​

Order of this column on its Issue Board

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 ​

addIssueStateToBoardColumn mutation ● removeIssueStateFromBoardColumn mutation ● searchIssueBoardColumns query

Member Of ​

CreateIssueBoardColumnPayload object ● IssueBoardColumnConnection object ● IssueBoardColumnEdge object ● UpdateIssueBoardColumnPayload object

Released under the MIT License.