f08b6334f0
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
13 lines
244 B
Elixir
13 lines
244 B
Elixir
defmodule MobilizonWeb.Schema.SortType do
|
|
@moduledoc """
|
|
Allows sorting a collection of elements
|
|
"""
|
|
use Absinthe.Schema.Notation
|
|
|
|
@desc "Available sort directions"
|
|
enum :sort_direction do
|
|
value(:asc)
|
|
value(:desc)
|
|
end
|
|
end
|