Welcome to mirror list, hosted at ThFree Co, Russian Federation.

get_issues.query.graphql « queries « dashboard « issues « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ffcb456755ce9cc209d9b81747bb37768193db9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#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
  $assigneeUsernames: [String!]
  $authorUsername: String
  $afterCursor: String
  $beforeCursor: String
  $firstPageSize: Int
  $lastPageSize: Int
) {
  issues(
    search: $search
    sort: $sort
    state: $state
    assigneeUsernames: $assigneeUsernames
    authorUsername: $authorUsername
    after: $afterCursor
    before: $beforeCursor
    first: $firstPageSize
    last: $lastPageSize
  ) {
    nodes {
      ...IssueFragment
      reference(full: true)
    }
    pageInfo {
      ...PageInfo
    }
  }
}