OBJECT

OrganizationMemberConnection

A paginated list of organization member relationships.

link GraphQL Schema definition

1type OrganizationMemberConnection {
2
3# The elements of the paginated list.
4edges: [OrganizationMemberEdge!]!
5
6# Information about this page.
7pageInfo: PageInfo!
8
9# The total number of Organization members.
10totalCount: Int!
11
12}