debian-mirror-gitlab/app/assets/javascripts/sidebar/queries/get_mr_participants.query.graphql
2023-03-04 22:38:38 +05:30

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