17 lines
458 B
GraphQL
17 lines
458 B
GraphQL
#import "~/graphql_shared/fragments/user.fragment.graphql"
|
|
#import "~/graphql_shared/fragments/user_availability.fragment.graphql"
|
|
|
|
query getMrParticipants($fullPath: ID!, $iid: String!, $getStatus: Boolean = false) {
|
|
workspace: project(fullPath: $fullPath) {
|
|
id
|
|
issuable: mergeRequest(iid: $iid) {
|
|
id
|
|
participants {
|
|
nodes {
|
|
...User
|
|
...UserAvailability @include(if: $getStatus)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|