2021-06-08 01:23:25 +05:30
|
|
|
#import "~/graphql_shared/fragments/user.fragment.graphql"
|
|
|
|
#import "~/graphql_shared/fragments/user_availability.fragment.graphql"
|
|
|
|
|
|
|
|
query getMrAssignees($fullPath: ID!, $iid: String!) {
|
|
|
|
workspace: project(fullPath: $fullPath) {
|
2022-01-26 12:08:38 +05:30
|
|
|
id
|
2021-06-08 01:23:25 +05:30
|
|
|
issuable: mergeRequest(iid: $iid) {
|
|
|
|
id
|
2022-08-27 11:52:29 +05:30
|
|
|
author {
|
|
|
|
...User
|
|
|
|
...UserAvailability
|
|
|
|
mergeRequestInteraction {
|
|
|
|
canMerge
|
|
|
|
}
|
|
|
|
}
|
2021-06-08 01:23:25 +05:30
|
|
|
assignees {
|
|
|
|
nodes {
|
|
|
|
...User
|
|
|
|
...UserAvailability
|
2022-05-07 20:08:51 +05:30
|
|
|
mergeRequestInteraction {
|
|
|
|
canMerge
|
|
|
|
}
|
2021-06-08 01:23:25 +05:30
|
|
|
}
|
|
|
|
}
|
2022-05-07 20:08:51 +05:30
|
|
|
userPermissions {
|
|
|
|
canMerge
|
|
|
|
}
|
2021-06-08 01:23:25 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|