debian-mirror-gitlab/app/assets/javascripts/sidebar/queries/epic_participants.query.graphql
2022-11-25 23:54:43 +05:30

15 lines
286 B
GraphQL

#import "~/graphql_shared/fragments/user.fragment.graphql"
query epicParticipants($fullPath: ID!, $iid: ID) {
workspace: group(fullPath: $fullPath) {
id
issuable: epic(iid: $iid) {
id
participants {
nodes {
...User
}
}
}
}
}