summaryrefslogtreecommitdiff
path: root/app/graphql/types/sort.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/sort.rb')
-rw-r--r--app/graphql/types/sort.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/graphql/types/sort.rb b/app/graphql/types/sort.rb
new file mode 100644
index 00000000000..1f756fdab69
--- /dev/null
+++ b/app/graphql/types/sort.rb
@@ -0,0 +1,10 @@
+# frozen_string_literal: true
+
+module Types
+ class Types::Sort < Types::BaseEnum
+ value "updated_desc", "Updated at descending order"
+ value "updated_asc", "Updated at ascending order"
+ value "created_desc", "Created at descending order"
+ value "created_asc", "Created at ascending order"
+ end
+end