mobilizon.chapril.org-mobil.../lib/mobilizon_web/schema/comment.ex

15 lines
363 B
Elixir
Raw Normal View History

defmodule MobilizonWeb.Schema.CommentType do
use Absinthe.Schema.Notation
@desc "A comment"
object :comment do
field(:uuid, :uuid)
field(:url, :string)
field(:local, :boolean)
field(:text, :string)
field(:primaryLanguage, :string)
field(:replies, list_of(:comment))
field(:threadLanguages, non_null(list_of(:string)))
end
end