debian-mirror-gitlab/app/assets/javascripts/sidebar/queries/get_mr_assignees.query.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
646 B
GraphQL
Raw Normal View History

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