Welcome to mirror list, hosted at ThFree Co, Russian Federation.

search_epics.query.graphql « queries « filtered_search_bar « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
      }
    }
  }
}