debian-mirror-gitlab/app/assets/javascripts/sidebar/queries/epic_participants.query.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
388 B
GraphQL
Raw Normal View History

2021-06-08 01:23:25 +05:30
#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) {
2022-01-26 12:08:38 +05:30
id
2021-06-08 01:23:25 +05:30
issuable: epic(iid: $iid) {
id
participants {
nodes {
...User
...UserAvailability
}
}
}
}
}