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

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

22 lines
458 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 issueAssignees($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: issue(iid: $iid) {
id
2022-08-27 11:52:29 +05:30
author {
...User
...UserAvailability
}
2021-06-08 01:23:25 +05:30
assignees {
nodes {
...User
...UserAvailability
}
}
}
}
}