summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issues/show/components/incidents/graphql/queries/create_timeline_event.mutation.graphql
blob: f1fc27dcb2a8ae1389049c536f68c1b915fc6cf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
mutation CreateTimelineEvent($input: TimelineEventCreateInput!) {
  timelineEventCreate(input: $input) {
    timelineEvent {
      id
      note
      noteHtml
      action
      occurredAt
      createdAt
    }
    errors
  }
}