OBJECT
SiteUserGroup
link GraphQL Schema definition
- type SiteUserGroup {
- # Em unique identifier for the site user group
- : String!
- # Site unique identifier
- : String!
- # Name of the site
- : String!
- # Site unique identifier of the user group
- : String!
- # Name of the user group
- : 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.
- (: String, : Int, : String, : 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.
- (: String, : Int, : String, : Int): StringConnection!
- # System group flag
- : Boolean!
- # Pairing status
- : EmPairingStatus!
- }