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

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

14 lines
197 B
GraphQL
Raw Normal View History

2022-04-04 11:22:00 +05:30
query project_recent_boards($fullPath: ID!) {
project(fullPath: $fullPath) {
id
recentIssueBoards {
edges {
node {
2022-10-11 01:57:18 +05:30
id
name
2022-04-04 11:22:00 +05:30
}
}
}
}
}