✂️ Split GraphQL schema into several files

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2019-01-14 17:13:17 +01:00
parent 66b0cd8e0c
commit b0bc8dfa5d
13 changed files with 403 additions and 290 deletions

View File

@@ -0,0 +1,13 @@
defmodule MobilizonWeb.Schema.Actors.MemberType do
use Absinthe.Schema.Notation
@desc """
Represents a member of a group
"""
object :member do
field(:parent, :group, description: "Of which the profile is member")
field(:person, :person, description: "Which profile is member of")
field(:role, :integer, description: "The role of this membership")
field(:approved, :boolean, description: "Whether this membership has been approved")
end
end