For the complete documentation index, see llms.txt. This page is also available as Markdown.

Organization

The parent interface for both Community and Domain types.

interface Organization {
  createdBy: User
  createdOn: DateTime
  description: String
  id: UUID!
  meta: Boolean!
  modifiedBy: User
  modifiedOn: DateTime
  name: String!
  parent: Community
  readPermissions(
    limit: Int = 10
    offset: Int = 0
    order: [[ReadPermissionOrder]]
    where: ReadPermissionFilter
  ): [ReadPermission!]!
  responsibilities(
    limit: Int = 10
    offset: Int = 0
    order: [[ResponsibilityOrder]]
    where: ResponsibilityFilter
  ): [Responsibility!]!
  system: Boolean!
}

Fields

createdBy ● User object

The user who created this resource.

createdOn ● DateTime scalar

The creation date of this resource.

description ● String scalar

The description of this organization.

id ● UUID! non-null scalar

The universally unique identifier of this node.

meta ● Boolean! non-null scalar

When true, this organization is not listed in the community or domain tree in the UI. Typically used for hidden domains such as *Issues*.

modifiedBy ● User object

The user who last modified this resource.

modifiedOn ● DateTime scalar

The last modified date of this resource.

name ● String! non-null scalar

The name of this organization.

parent ● Community object

The parent community of this organization. It is null for root communities.

readPermissions ● [ReadPermission!]! non-null object

The list of all read permissions directly assigned to this organization. This list does not include inherited read permissions.

limit ● Int scalar

The maximum items to return.

offset ● Int scalar

The number of items to skip.

order ● [[ReadPermissionOrder]] list input

Sorting parameters.

where ● ReadPermissionFilter input

Filtering parameters.

responsibilities ● [Responsibility!]! non-null object

The list of all responsibilities directly assigned to this organization. This list does not include inherited responsibilities.

limit ● Int scalar

The maximum items to return.

offset ● Int scalar

The number of items to skip.

order ● [[ResponsibilityOrder]] list input

Sorting parameters.

where ● ResponsibilityFilter input

Filtering parameters.

system ● Boolean! non-null scalar

Whether this resource is reserved by the system.

Member Of

Community object

Implemented By

Community object ● Domain object

Last updated

Was this helpful?