OBJECT

SiteUserGroup

link GraphQL Schema definition

  • type SiteUserGroup {
  • # Em unique identifier for the site user group
  • id: String!
  • # Site unique identifier
  • siteId: String!
  • # Name of the site
  • siteName: String!
  • # Site unique identifier of the user group
  • userGroupId: String!
  • # Name of the user group
  • userGroupName: String!
  • # Names of the roles associated with the user group on the site
  • #
  • # Arguments
  • # after: Returns the items in the list that come after the
  • # specified cursor.
  • # first: Returns the first n items from the list.
  • # before: Returns the items in the list that come before the
  • # specified cursor.
  • # last: Returns the last n items from the list.
  • rolesNames(after: String, first: Int, before: String, last: Int): StringConnection!
  • # Names of the zones associated with the user group on the site
  • #
  • # Arguments
  • # after: Returns the items in the list that come after the
  • # specified cursor.
  • # first: Returns the first n items from the list.
  • # before: Returns the items in the list that come before the
  • # specified cursor.
  • # last: Returns the last n items from the list.
  • zonesNames(after: String, first: Int, before: String, last: Int): StringConnection!
  • # System group flag
  • system: Boolean!
  • # Pairing status
  • status: EmPairingStatus!
  • }