OBJECT

SdOrg

INTERNAL -- Data on the Org Object

link GraphQL Schema definition

  • type SdOrg {
  • # The number of standard seats of the organization
  • active_standard_seats: Int
  • # Cursor for Suborganization Pagination
  • cursor: String!
  • # The unique identifier of the object
  • id: ID!
  • # Name of the organization
  • name: String
  • # The number of active providers of the organization
  • only_active_providers_count: Int
  • # The number of active support user of the organization
  • only_active_support_count: Int
  • # Owner of Organization
  • owner: SdUser
  • # Parent Organization for this org
  • parent_organization: SdOrg
  • # The ID of the parent organization
  • parent_organization_id: ID
  • # Suborganizations for this org
  • #
  • # Arguments
  • # cursor: Cursor for pagination
  • suborganization_collection(cursor: String): SdSuborgCollection
  • # List of suborganizations for this org
  • suborganizations: [SdOrg!]
  • # The list of users for the organization
  • #
  • # Arguments
  • # cursor: Cursor for pagination
  • user_collection(cursor: String): SdUserCollection
  • # The list of users in this org
  • users: [SdUser!]
  • }