OBJECT

Group

Description

User group details.

link GraphQL Schema definition

  • type Group {
  • # The ID of the user group.
  • groupId: String!
  • # The name of the user group.
  • groupName: String!
  • # Users from the user group who are logged-in to the account.
  • users: [User!]!
  • # User group roles in the context organization.
  • roles: [Role!]!
  • # The suborganizations in which the user group has roles.
  • allOrgs: [Org!]!
  • # Users from the user group who are currently logged-in to the account.
  • activeUsers: [User!]!
  • }