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

merge_request_reviewers.subscription.graphql « queries « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a1b16b378b31c5a44b6cf88f0b934c5e701e593f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#import "~/graphql_shared/fragments/user.fragment.graphql"
#import "~/graphql_shared/fragments/user_availability.fragment.graphql"

subscription mergeRequestReviewersUpdated($issuableId: IssuableID!) {
  mergeRequestReviewersUpdated(issuableId: $issuableId) {
    ... on MergeRequest {
      id
      reviewers {
        nodes {
          ...User
          ...UserAvailability
          mergeRequestInteraction {
            canMerge
            canUpdate
            approved
            reviewed
          }
        }
      }
    }
  }
}