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

update_epic_confidential.mutation.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: 69927ddd205155e38bced7150e546514162af637 (plain)
1
2
3
4
5
6
7
8
9
mutation updateEpic($input: UpdateEpicInput!) {
  issuableSetConfidential: updateEpic(input: $input) {
    issuable: epic {
      id
      confidential
    }
    errors
  }
}