gitlab-org--gitlab-foss/app/assets/javascripts/vue_shared/components/sidebar/queries/get_issue_participants.quer...

20 lines
347 B
GraphQL
Raw Normal View History

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