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

edit_timeline_event.mutation.graphql « queries « graphql « incidents « components « show « issues « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54f036268cc61ace8b7546280d41205c7ccbf7ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
mutation UpdateTimelineEvent($input: TimelineEventUpdateInput!) {
  timelineEventUpdate(input: $input) {
    timelineEvent {
      id
      note
      noteHtml
      action
      occurredAt
      createdAt
    }
    errors
  }
}