summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issues/show/components/incidents/graphql/queries/edit_timeline_event.mutation.graphql
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
  }
}