19 lines
413 B
GraphQL
19 lines
413 B
GraphQL
|
#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
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|