summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/incidents/graphql/queries/get_incidents.query.graphql
blob: 1e18d89b656afd6e5d08461b08ecfecc73136dba (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#import "ee_else_ce/incidents/graphql/fragments/incident_fields.fragment.graphql"

query getIncidents(
  $projectPath: ID!
  $issueTypes: [IssueType!]
  $sort: IssueSort
  $status: IssuableState
  $firstPageSize: Int
  $lastPageSize: Int
  $prevPageCursor: String = ""
  $nextPageCursor: String = ""
  $searchTerm: String = ""
  $authorUsername: String = ""
  $assigneeUsername: String = ""
) {
  project(fullPath: $projectPath) {
    id
    issues(
      search: $searchTerm
      types: $issueTypes
      sort: $sort
      state: $status
      authorUsername: $authorUsername
      assigneeUsername: $assigneeUsername
      first: $firstPageSize
      last: $lastPageSize
      after: $nextPageCursor
      before: $prevPageCursor
    ) {
      nodes {
        id
        iid
        title
        createdAt
        state
        labels {
          nodes {
            id
            title
            color
          }
        }
        assignees {
          nodes {
            id
            name
            username
            avatarUrl
            webUrl
          }
        }
        ...IncidentFields
      }
      pageInfo {
        hasNextPage
        endCursor
        hasPreviousPage
        startCursor
      }
    }
  }
}