summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/queries/epic_participants.query.graphql
blob: fbebc50ab081d08cb16b1b8e600efbb80dfd0f30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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) {
    __typename
    issuable: epic(iid: $iid) {
      __typename
      id
      participants {
        nodes {
          ...User
          ...UserAvailability
        }
      }
    }
  }
}