summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/releases/graphql/fragments/release_for_editing.fragment.graphql
blob: 236d266a40a8b6aaa158069b5ce83b6ee3c6fe15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
fragment ReleaseForEditing on Release {
  id
  name
  tagName
  description
  assets {
    links {
      nodes {
        id
        name
        url
        linkType
        directAssetPath
      }
    }
  }
  links {
    selfUrl
  }
  milestones {
    nodes {
      id
      title
    }
  }
}