summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/filtered_search_bar/queries/search_epics.query.graphql
blob: 4bb4b586fc9e6763e25f7fd4018076e56ecd34e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import "./epic.fragment.graphql"

query searchEpics($fullPath: ID!, $search: String, $state: EpicState) {
  group(fullPath: $fullPath) {
    epics(
      search: $search
      state: $state
      includeAncestorGroups: true
      includeDescendantGroups: false
    ) {
      nodes {
        ...EpicNode
      }
    }
  }
}