Skip to content

IssueBoard ​

Issue Boards used to assign Issues to. An Issue Board consists of a name and a description. READ is granted if READ is granted on any Trackable in trackable.

graphql
type IssueBoard implements BaseNode, Named, NamedNode, Node {
  description: String!
  hasPermission(
    permission: AllPermissionEntry
  ): Boolean!
  id: ID!
  issueBoardColumns(
    after: String
    before: String
    filter: IssueBoardColumnFilterInput
    first: Int
    last: Int
    orderBy: [IssueBoardColumnOrder!]
    skip: Int
  ): IssueBoardColumnConnection!
  issueBoardItems(
    after: String
    before: String
    filter: IssueBoardItemFilterInput
    first: Int
    last: Int
    orderBy: [IssueBoardItemOrder!]
    skip: Int
  ): IssueBoardItemConnection!
  name: String!
  trackable: Trackable!
}

Fields ​

IssueBoard.description ● String! non-null scalar ​

The description of this entity.

IssueBoard.hasPermission ● Boolean! non-null scalar ​

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

IssueBoard.hasPermission.permission ● AllPermissionEntry enum ​

The permission to check for

IssueBoard.id ● ID! non-null scalar ​

The unique id of this node

IssueBoard.issueBoardColumns ● IssueBoardColumnConnection! non-null object ​

Columns on this IssueBoard

IssueBoard.issueBoardColumns.after ● String scalar ​

Get only items after the cursor

IssueBoard.issueBoardColumns.before ● String scalar ​

Get only items before the cursor

IssueBoard.issueBoardColumns.filter ● IssueBoardColumnFilterInput input ​

Filter for specific items in the connection

IssueBoard.issueBoardColumns.first ● Int scalar ​

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

IssueBoard.issueBoardColumns.last ● Int scalar ​

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

IssueBoard.issueBoardColumns.orderBy ● [IssueBoardColumnOrder!] list input ​

Order in which the items are sorted

IssueBoard.issueBoardColumns.skip ● Int scalar ​

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

IssueBoard.issueBoardItems ● IssueBoardItemConnection! non-null object ​

Items on this IssueBoard

IssueBoard.issueBoardItems.after ● String scalar ​

Get only items after the cursor

IssueBoard.issueBoardItems.before ● String scalar ​

Get only items before the cursor

IssueBoard.issueBoardItems.filter ● IssueBoardItemFilterInput input ​

Filter for specific items in the connection

IssueBoard.issueBoardItems.first ● Int scalar ​

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

IssueBoard.issueBoardItems.last ● Int scalar ​

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

IssueBoard.issueBoardItems.orderBy ● [IssueBoardItemOrder!] list input ​

Order in which the items are sorted

IssueBoard.issueBoardItems.skip ● Int scalar ​

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

IssueBoard.name ● String! non-null scalar ​

The name of this entity.

IssueBoard.trackable ● Trackable! non-null interface ​

Trackable this Issue Board is part of.

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 ​

searchIssueBoards query

Member Of ​

CreateIssueBoardPayload object ● IssueBoardColumn object ● IssueBoardConnection object ● IssueBoardEdge object ● IssueBoardItem object ● UpdateIssueBoardPayload object

Released under the MIT License.