OBJECT

OrganizationInviteUserConnection

Paginated list of organization invites for in a user.

link GraphQL Schema definition

1type OrganizationInviteUserConnection {
2
3# The elements of the paginated list.
4edges: [OrganizationInviteEdge!]!
5
6# Information about this page.
7pageInfo: PageInfo!
8
9# The total number of Organization invites.
10totalCount: Int!
11
12# Whether or not the user is under the limit of allowed organization memberships.
13isWithinOrganizationMembershipLimit: Boolean
14
15}