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

award_emoji.query.graphql « 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: 82a532e1bea02ea8b3d04f02454881e42b1be1ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#import "~/graphql_shared/fragments/page_info.fragment.graphql"
#import "~/work_items/graphql/award_emoji.fragment.graphql"

query workItemAwardEmojis($fullPath: ID!, $iid: String, $after: String, $pageSize: Int) {
  workspace: project(fullPath: $fullPath) {
    id
    workItems(iid: $iid) {
      nodes {
        id
        iid
        widgets {
          ... on WorkItemWidgetAwardEmoji {
            type
            awardEmoji(first: $pageSize, after: $after) {
              pageInfo {
                ...PageInfo
              }
              nodes {
                ...AwardEmojiFragment
              }
            }
          }
        }
      }
    }
  }
}