CompanyUsers
type CompanyUsers {
total: Int!
users: [CompanyUser!]!
}
Fields
CompanyUsers.total ● Int! non-null scalar graph-ql-types
Total number of all users in the company, used for pagination @exposed
CompanyUsers.users ● [CompanyUser!]! non-null object graph-ql-types
A subset of users in the company, representing a single page of results as specified by the offset and limit parameters in the companyUsers query. @exposed
Returned By
companyUsers query