debian-mirror-gitlab/app/assets/javascripts/issues/dashboard/queries/get_issues.query.graphql

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

49 lines
1.1 KiB
GraphQL
Raw Normal View History

2023-03-04 22:38:38 +05:30
#import "~/graphql_shared/fragments/page_info.fragment.graphql"
#import "~/issues/list/queries/issue.fragment.graphql"
query getDashboardIssues(
$hideUsers: Boolean = false
$isSignedIn: Boolean = false
$search: String
$sort: IssueSort
$state: IssuableState
2023-03-17 16:20:25 +05:30
$assigneeId: String
2023-03-04 22:38:38 +05:30
$assigneeUsernames: [String!]
$authorUsername: String
2023-03-17 16:20:25 +05:30
$labelName: [String]
$milestoneTitle: [String]
$milestoneWildcardId: MilestoneWildcardId
$myReactionEmoji: String
$not: NegatedIssueFilterInput
2023-03-04 22:38:38 +05:30
$afterCursor: String
$beforeCursor: String
$firstPageSize: Int
$lastPageSize: Int
) {
issues(
search: $search
sort: $sort
state: $state
2023-03-17 16:20:25 +05:30
assigneeId: $assigneeId
2023-03-04 22:38:38 +05:30
assigneeUsernames: $assigneeUsernames
authorUsername: $authorUsername
2023-03-17 16:20:25 +05:30
labelName: $labelName
milestoneTitle: $milestoneTitle
milestoneWildcardId: $milestoneWildcardId
myReactionEmoji: $myReactionEmoji
not: $not
2023-03-04 22:38:38 +05:30
after: $afterCursor
before: $beforeCursor
first: $firstPageSize
last: $lastPageSize
) {
nodes {
...IssueFragment
reference(full: true)
}
pageInfo {
...PageInfo
}
}
}