2021-03-11 19:13:27 +05:30
|
|
|
#import "~/graphql_shared/fragments/user.fragment.graphql"
|
2021-04-29 21:17:54 +05:30
|
|
|
#import "~/graphql_shared/fragments/user_availability.fragment.graphql"
|
2021-03-11 19:13:27 +05:30
|
|
|
|
2022-11-25 23:54:43 +05:30
|
|
|
query getMrParticipants($fullPath: ID!, $iid: String!, $getStatus: Boolean = false) {
|
2021-04-17 20:07:23 +05:30
|
|
|
workspace: project(fullPath: $fullPath) {
|
2022-01-26 12:08:38 +05:30
|
|
|
id
|
2021-03-11 19:13:27 +05:30
|
|
|
issuable: mergeRequest(iid: $iid) {
|
|
|
|
id
|
|
|
|
participants {
|
|
|
|
nodes {
|
|
|
|
...User
|
2022-11-25 23:54:43 +05:30
|
|
|
...UserAvailability @include(if: $getStatus)
|
2021-03-11 19:13:27 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|