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

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