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

epic_start_date.query.graphql « queries « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c6c24fd3d95545eb27682c37ab32df819b21e3c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
query epicStartDate($fullPath: ID!, $iid: ID) {
  workspace: group(fullPath: $fullPath) {
    __typename
    issuable: epic(iid: $iid) {
      __typename
      id
      startDate
      startDateIsFixed
      startDateFixed
      startDateFromMilestones
    }
  }
}