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

create_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: 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
  }
}