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

promote_timeline_event.mutation.graphql « graphql « notes « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9df9cfd6d3dc38e8f40a79d3349783a447b8138 (plain)
1
2
3
4
5
6
7
8
mutation PromoteTimelineEvent($input: TimelineEventPromoteFromNoteInput!) {
  timelineEventPromoteFromNote(input: $input) {
    timelineEvent {
      id
    }
    errors
  }
}