OBJECT
OrganizationSelfEdge
The relationship between the authenticated user and a game.
link GraphQL Schema definition
1 type OrganizationSelfEdge { 2 3 # Whether or not the current user is able to add another to the organization. 4 : Boolean! 5 6 # Whether or not the current user is able to leave the organization. 7 : Boolean! 8 9 # Whether or not the current user is able to remove a member from the 10 # organization. 11 : Boolean! 12 13 # Date user joined organization. 14 : Time! 15 16 # The current users role in the organization. 17 : OrganizationMemberRole! 18 19 }