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.

57 lines
1.3 KiB
GraphQL
Raw Normal View History

2023-03-04 22:38:38 +05:30
#import "~/graphql_shared/fragments/page_info.fragment.graphql"
2023-04-23 21:23:45 +05:30
#import "./issue.fragment.graphql"
2023-03-04 22:38:38 +05:30
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-04-23 21:23:45 +05:30
$confidential: Boolean
2023-03-17 16:20:25 +05:30
$labelName: [String]
$milestoneTitle: [String]
$milestoneWildcardId: MilestoneWildcardId
$myReactionEmoji: String
2023-04-23 21:23:45 +05:30
$types: [IssueType!]
$in: [IssuableSearchableField!]
2023-03-17 16:20:25 +05:30
$not: NegatedIssueFilterInput
2023-04-23 21:23:45 +05:30
$or: UnionedIssueFilterInput
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-04-23 21:23:45 +05:30
confidential: $confidential
2023-03-17 16:20:25 +05:30
labelName: $labelName
milestoneTitle: $milestoneTitle
milestoneWildcardId: $milestoneWildcardId
myReactionEmoji: $myReactionEmoji
2023-04-23 21:23:45 +05:30
types: $types
in: $in
2023-03-17 16:20:25 +05:30
not: $not
2023-04-23 21:23:45 +05:30
or: $or
2023-03-04 22:38:38 +05:30
after: $afterCursor
before: $beforeCursor
first: $firstPageSize
last: $lastPageSize
) {
nodes {
...IssueFragment
reference(full: true)
}
pageInfo {
...PageInfo
}
}
}