forked from potsda.mn/mobilizon
12 lines
401 B
Elixir
12 lines
401 B
Elixir
|
defmodule MobilizonWeb.Schema.Events.CategoryType do
|
||
|
use Absinthe.Schema.Notation
|
||
|
|
||
|
@desc "A category"
|
||
|
object :category do
|
||
|
field(:id, :id, description: "The category's ID")
|
||
|
field(:description, :string, description: "The category's description")
|
||
|
field(:picture, :picture, description: "The category's picture")
|
||
|
field(:title, :string, description: "The category's title")
|
||
|
end
|
||
|
end
|