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

release_for_editing.fragment.graphql « fragments « graphql « releases « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 47c5afefd78dea06b3b7ec54b0e7a7cd2a411c0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
fragment ReleaseForEditing on Release {
  name
  tagName
  description
  assets {
    links {
      nodes {
        id
        name
        url
        linkType
      }
    }
  }
  links {
    selfUrl
  }
  milestones {
    nodes {
      title
    }
  }
}