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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/incidents/graphql/queries/get_incidents.query.graphql')
-rw-r--r--app/assets/javascripts/incidents/graphql/queries/get_incidents.query.graphql4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/incidents/graphql/queries/get_incidents.query.graphql b/app/assets/javascripts/incidents/graphql/queries/get_incidents.query.graphql
index 6e8e6a1254c..0f56e8640bd 100644
--- a/app/assets/javascripts/incidents/graphql/queries/get_incidents.query.graphql
+++ b/app/assets/javascripts/incidents/graphql/queries/get_incidents.query.graphql
@@ -2,7 +2,7 @@ query getIncidents(
$projectPath: ID!
$issueTypes: [IssueType!]
$sort: IssueSort
- $state: IssuableState
+ $status: IssuableState
$firstPageSize: Int
$lastPageSize: Int
$prevPageCursor: String = ""
@@ -12,9 +12,9 @@ query getIncidents(
project(fullPath: $projectPath) {
issues(
search: $searchTerm
- state: $state
types: $issueTypes
sort: $sort
+ state: $status
first: $firstPageSize
last: $lastPageSize
after: $nextPageCursor