summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issues_list/queries/search_milestones.query.graphql
blob: 8c6c50e9dc23210c9a9b07c06ad671d9cf5fab87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#import "./milestone.fragment.graphql"

query searchMilestones($fullPath: ID!, $search: String, $isProject: Boolean = false) {
  group(fullPath: $fullPath) @skip(if: $isProject) {
    milestones(searchTitle: $search, includeAncestors: true, includeDescendants: true) {
      nodes {
        ...Milestone
      }
    }
  }
  project(fullPath: $fullPath) @include(if: $isProject) {
    milestones(searchTitle: $search, includeAncestors: true) {
      nodes {
        ...Milestone
      }
    }
  }
}