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

epic.fragment.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: 9e9bda8ad3ef109ee2111c143d0a61901df33dda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fragment EpicNode on Epic {
  id
  iid
  group {
    fullPath
  }
  title
  state
  reference
  referencePath: reference(full: true)
  webPath
  webUrl
  createdAt
  closedAt
}