Skip to content

IssueBoardItem

An item in an IssueBoardColumn pointing to an Issue. position determines its order in the column. READ is granted if READ is granted on the parent Trackable on the Issue Board.

graphql
type IssueBoardItem implements BaseNode, Node {
  hasPermission(
    permission: AllPermissionEntry
  ): Boolean!
  id: ID!
  issue: Issue!
  issueBoard: IssueBoard!
  position: Float!
}

Fields

IssueBoardItem.hasPermission ● Boolean! non-null scalar

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

IssueBoardItem.hasPermission.permission ● AllPermissionEntry enum

The permission to check for

IssueBoardItem.id ● ID! non-null scalar

The unique id of this node

IssueBoardItem.issue ● Issue! non-null object

The Issue represented by this board item

IssueBoardItem.issueBoard ● IssueBoard! non-null object

The Issue Board this board item belongs to

IssueBoardItem.position ● Float! non-null scalar

Order of this item in its column

Interfaces

BaseNode interface

Shared extensions to the node type.

Node interface

Base class of all nodes

Member Of

CreateIssueBoardItemPayload object ● IssueBoardItemConnection object ● IssueBoardItemEdge object ● UpdateIssueBoardItemPayload object

Released under the MIT License.