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

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

mutation updateAbuseReportNote($input: UpdateNoteInput!) {
  updateNote(input: $input) {
    note {
      ...AbuseReportNote
    }
    errors
  }
}