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

toggle_resolve_discussion.mutation.graphql « mutations « graphql « design_management_legacy « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1157fc05d5f155a6f454488220f5c717b512977d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import "../fragments/design_note.fragment.graphql"
#import "../fragments/discussion_resolved_status.fragment.graphql"

mutation toggleResolveDiscussion($id: ID!, $resolve: Boolean!) {
  discussionToggleResolve(input: { id: $id, resolve: $resolve }) {
    discussion {
      id
      ...ResolvedStatus
      notes {
        nodes {
          ...DesignNote
        }
      }
    }
    errors
  }
}