Commit 961332b4 authored by Peter Leitzen's avatar Peter Leitzen

Fix sorting alerts in GraphQL

parent 7bf9aef1
...@@ -11,9 +11,9 @@ module Types ...@@ -11,9 +11,9 @@ module Types
value 'END_TIME_ASC', 'End time by ascending order', value: :end_time_asc value 'END_TIME_ASC', 'End time by ascending order', value: :end_time_asc
value 'END_TIME_DESC', 'End time by descending order', value: :end_time_desc value 'END_TIME_DESC', 'End time by descending order', value: :end_time_desc
value 'CREATED_TIME_ASC', 'Created time by ascending order', value: :created_at_asc value 'CREATED_TIME_ASC', 'Created time by ascending order', value: :created_at_asc
value 'CREATED_TIME_DESC', 'Created time by ascending order', value: :created_at_desc value 'CREATED_TIME_DESC', 'Created time by descending order', value: :created_at_desc
value 'UPDATED_TIME_ASC', 'Created time by ascending order', value: :updated_at_desc value 'UPDATED_TIME_ASC', 'Created time by ascending order', value: :updated_at_asc
value 'UPDATED_TIME_DESC', 'Created time by ascending order', value: :updated_at_desc value 'UPDATED_TIME_DESC', 'Created time by descending order', value: :updated_at_desc
value 'EVENTS_COUNT_ASC', 'Events count by ascending order', value: :events_count_asc value 'EVENTS_COUNT_ASC', 'Events count by ascending order', value: :events_count_asc
value 'EVENTS_COUNT_DESC', 'Events count by descending order', value: :events_count_desc value 'EVENTS_COUNT_DESC', 'Events count by descending order', value: :events_count_desc
value 'SEVERITY_ASC', 'Severity by ascending order', value: :severity_asc value 'SEVERITY_ASC', 'Severity by ascending order', value: :severity_asc
......
...@@ -258,7 +258,7 @@ enum AlertManagementAlertSort { ...@@ -258,7 +258,7 @@ enum AlertManagementAlertSort {
CREATED_TIME_ASC CREATED_TIME_ASC
""" """
Created time by ascending order Created time by descending order
""" """
CREATED_TIME_DESC CREATED_TIME_DESC
...@@ -318,7 +318,7 @@ enum AlertManagementAlertSort { ...@@ -318,7 +318,7 @@ enum AlertManagementAlertSort {
UPDATED_TIME_ASC UPDATED_TIME_ASC
""" """
Created time by ascending order Created time by descending order
""" """
UPDATED_TIME_DESC UPDATED_TIME_DESC
......
...@@ -786,7 +786,7 @@ ...@@ -786,7 +786,7 @@
}, },
{ {
"name": "CREATED_TIME_DESC", "name": "CREATED_TIME_DESC",
"description": "Created time by ascending order", "description": "Created time by descending order",
"isDeprecated": false, "isDeprecated": false,
"deprecationReason": null "deprecationReason": null
}, },
...@@ -798,7 +798,7 @@ ...@@ -798,7 +798,7 @@
}, },
{ {
"name": "UPDATED_TIME_DESC", "name": "UPDATED_TIME_DESC",
"description": "Created time by ascending order", "description": "Created time by descending order",
"isDeprecated": false, "isDeprecated": false,
"deprecationReason": null "deprecationReason": null
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment