OBJECT

PublicOrganization

Type returned as a part of a OrganizationUnion type when the user doesn't have access to the Organization object.

link GraphQL Schema definition

  • type PublicOrganization {
  • name: String!
  • organizationId: HashId!
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • # text: [Not documented]
  • # archived: [Not documented]
  • subOrganizations(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • text: String,
  • archived: Boolean
  • ): PublicOrganizationConnection
  • }