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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|