gitlab-org--gitlab-foss/app/assets/javascripts/boards/graphql/group_boards.query.graphql

15 lines
234 B
GraphQL

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