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

work_item_note_remove_award_emoji.mutation.graphql « notes « graphql « work_items « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22942fbb823fa9319d620a17f0c8c857460840ea (plain)
1
2
3
4
5
mutation workItemNoteRemoveAwardEmoji($awardableId: AwardableID!, $name: String!) {
  awardEmojiRemove(input: { awardableId: $awardableId, name: $name }) {
    errors
  }
}