Skip to content

Create an issue board via GraphQL mutation

Jarka Košanová requested to merge 233433-create-board-graphql into master

What does this MR do?

It adds a GraphQL mutation that adds support for creating an issue board.

Multiple issue boards for groups are supported only for at least premium license.

Examples

Request

mutation {
  createBoard(input: {projectPath: "flightjs/flight", name: "test board"}) {
    board {
      id
      name
    }
    errors
  }
}

Response

{
  "data": {
    "createBoard": {
      "board": {
        "id": "gid://gitlab/Board/4",
        "name": "test board"
      },
      "errors": []
    }
  }
}

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Issue: #233433 (closed)

Edited by Jarka Košanová

Merge request reports