debian-mirror-gitlab/app/assets/javascripts/boards/graphql/project_board.query.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
240 B
GraphQL
Raw Normal View History

2021-12-11 22:18:48 +05:30
#import "ee_else_ce/boards/graphql/board_scope.fragment.graphql"
2022-07-16 23:28:13 +05:30
query ProjectBoard($fullPath: ID!, $boardId: BoardID!) {
2021-12-11 22:18:48 +05:30
workspace: project(fullPath: $fullPath) {
2022-01-26 12:08:38 +05:30
id
2021-12-11 22:18:48 +05:30
board(id: $boardId) {
...BoardScopeFragment
}
}
}