summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/queries/epic_participants.query.graphql
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
        }
      }
    }
  }
}