board_columns.graphql

 1"""Represents a column on a Board."""
 2type BoardColumn
 3@goModel(model: "github.com/git-bug/git-bug/entities/board.Column") {
 4    id: CombinedId! @goField(name: "CombinedId")
 5
 6    name: String!
 7
 8    items(
 9        """Returns the elements in the list that come after the specified cursor."""
10        after: String
11        """Returns the elements in the list that come before the specified cursor."""
12        before: String
13        """Returns the first _n_ elements from the list."""
14        first: Int
15        """Returns the last _n_ elements from the list."""
16        last: Int
17    ): BoardItemConnection!
18}
19
20type BoardColumnConnection {
21    edges: [BoardColumnEdge!]!
22    nodes: [BoardColumn!]!
23    pageInfo: PageInfo!
24    totalCount: Int!
25}
26
27type BoardColumnEdge {
28    cursor: String!
29    node: BoardColumn!
30}