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

24 lines
469 B
GraphQL

#import "~/graphql_shared/fragments/label.fragment.graphql"
query BoardLabels(
$fullPath: ID!
$searchTerm: String
$isGroup: Boolean = false
$isProject: Boolean = false
) {
group(fullPath: $fullPath) @include(if: $isGroup) {
labels(searchTerm: $searchTerm) {
nodes {
...Label
}
}
}
project(fullPath: $fullPath) @include(if: $isProject) {
labels(searchTerm: $searchTerm) {
nodes {
...Label
}
}
}
}