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: 4a8786b04b10195d6dd62d165c170813f0342948 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
mutation CreateTimelineEvent($input: TimelineEventCreateInput!) {
  timelineEventCreate(input: $input) {
    timelineEvent {
      id
      note
      noteHtml
      action
      occurredAt
      createdAt
      timelineEventTags {
        nodes {
          id
          name
        }
      }
    }
    errors
  }
}