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

update_work_item_note.mutation.graphql « notes « graphql « work_items « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb52eb912e7bcbe0a56e53d28ba3fcf8793c1739 (plain)
1
2
3
4
5
6
7
8
9
10
#import "ee_else_ce/work_items/graphql/notes/work_item_note.fragment.graphql"

mutation updateWorkItemNote($input: UpdateNoteInput!) {
  updateNote(input: $input) {
    note {
      ...WorkItemNote
    }
    errors
  }
}