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

project_issue_milestone.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: 2bc42a0b0113c3803630a97fd10a9f0b93aa8017 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#import "./milestone.fragment.graphql"

query projectIssueMilestone($fullPath: ID!, $iid: String!) {
  workspace: project(fullPath: $fullPath) {
    __typename
    issuable: issue(iid: $iid) {
      __typename
      id
      attribute: milestone {
        ...MilestoneFragment
      }
    }
  }
}