2020-01-26 20:34:25 +01:00
|
|
|
defmodule Mobilizon.GraphQL.Schema.SortType do
|
2019-03-05 10:30:50 +01:00
|
|
|
@moduledoc """
|
|
|
|
Allows sorting a collection of elements
|
|
|
|
"""
|
2019-03-01 11:41:28 +01:00
|
|
|
use Absinthe.Schema.Notation
|
|
|
|
|
|
|
|
@desc "Available sort directions"
|
|
|
|
enum :sort_direction do
|
2020-11-19 17:06:28 +01:00
|
|
|
value(:asc, description: "Ascending order")
|
|
|
|
value(:desc, description: "Descending order")
|
2019-03-01 11:41:28 +01:00
|
|
|
end
|
|
|
|
end
|