OBJECT

OrganizationSelfEdge

The relationship between the authenticated user and a game.

link GraphQL Schema definition

1type OrganizationSelfEdge {
2
3# Whether or not the current user is able to add another to the organization.
4canAddMember: Boolean!
5
6# Whether or not the current user is able to leave the organization.
7canLeaveOrganization: Boolean!
8
9# Whether or not the current user is able to remove a member from the
10# organization.
11canRemoveMember: Boolean!
12
13# Date user joined organization.
14joinedAt: Time!
15
16# The current users role in the organization.
17role: OrganizationMemberRole!
18
19}