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

epic_participants.query.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: d665ca1e0846344c9a79e4fc6dc5ff17b4dbe4ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import "~/graphql_shared/fragments/user.fragment.graphql"
#import "~/graphql_shared/fragments/user_availability.fragment.graphql"

query epicParticipants($fullPath: ID!, $iid: ID) {
  workspace: group(fullPath: $fullPath) {
    id
    issuable: epic(iid: $iid) {
      id
      participants {
        nodes {
          ...User
          ...UserAvailability
        }
      }
    }
  }
}