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

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

18 lines
451 B
GraphQL
Raw Normal View History

2021-03-11 19:13:27 +05:30
#import "~/graphql_shared/fragments/user.fragment.graphql"
2021-04-29 21:17:54 +05:30
#import "~/graphql_shared/fragments/user_availability.fragment.graphql"
2021-03-11 19:13:27 +05:30
2022-11-25 23:54:43 +05:30
query issueParticipants($fullPath: ID!, $iid: String!, $getStatus: Boolean = false) {
2021-04-17 20:07:23 +05:30
workspace: project(fullPath: $fullPath) {
2022-01-26 12:08:38 +05:30
id
2021-03-11 19:13:27 +05:30
issuable: issue(iid: $iid) {
id
participants {
nodes {
...User
2022-11-25 23:54:43 +05:30
...UserAvailability @include(if: $getStatus)
2021-03-11 19:13:27 +05:30
}
}
}
}
}