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

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

14 lines
179 B
GraphQL
Raw Normal View History

2020-04-08 14:13:33 +05:30
query project_boards($fullPath: ID!) {
project(fullPath: $fullPath) {
2022-01-26 12:08:38 +05:30
id
2020-04-08 14:13:33 +05:30
boards {
edges {
node {
2022-10-11 01:57:18 +05:30
id
name
2020-04-08 14:13:33 +05:30
}
}
}
}
}