debian-mirror-gitlab/app/assets/javascripts/boards/graphql/group_boards.query.graphql
2021-02-22 17:27:13 +05:30

13 lines
227 B
GraphQL

#import "ee_else_ce/boards/graphql/board.fragment.graphql"
query group_boards($fullPath: ID!) {
group(fullPath: $fullPath) {
boards {
edges {
node {
...BoardFragment
}
}
}
}
}