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

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

15 lines
234 B
GraphQL
Raw Normal View History

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