Add ability to list users

This commit is contained in:
Chocobozzz
2019-03-01 11:41:28 +01:00
committed by Thomas Citharel
parent 6ee3233cc6
commit a0123459b3
7 changed files with 182 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
defmodule MobilizonWeb.Schema.SortType do
use Absinthe.Schema.Notation
@desc "Available sort directions"
enum :sort_direction do
value(:asc)
value(:desc)
end
end