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

24 lines
469 B
GraphQL
Raw Normal View History

2021-01-29 00:20:46 +05:30
#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
}
}
}
}