gitlab-org--gitlab-foss/app/assets/javascripts/vue_shared/components/sidebar/queries/get_mr_participants.query.g...

20 lines
354 B
GraphQL

#import "~/graphql_shared/fragments/user.fragment.graphql"
query getMrParticipants($fullPath: ID!, $iid: String!) {
project(fullPath: $fullPath) {
issuable: mergeRequest(iid: $iid) {
id
participants {
nodes {
...User
}
}
assignees {
nodes {
...User
}
}
}
}
}