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

OrganizationFilter

The parent interface for both Community and Domain types.

input OrganizationFilter {
  _and: [OrganizationFilter]
  _or: [OrganizationFilter]
  createdBy: UserReferenceFilter
  createdOn: DateTimeFilter
  description: StringFilter
  id: UUIDFilter
  meta: Boolean
  modifiedBy: UserReferenceFilter
  modifiedOn: DateTimeFilter
  name: StringFilter
  parent: CommunityReferenceFilter
  readPermissions: ReadPermissionCollectionFilter
  responsibilities: ResponsibilityCollectionFilter
  system: Boolean
}

Fields

The user who created this resource.

The creation date of this resource.

The description of this organization.

The universally unique identifier of this node.

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

The user who last modified this resource.

The last modified date of this resource.

The name of this organization.

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

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

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

Whether this resource is reserved by the system.

Member Of

OrganizationCollectionFilter input ● OrganizationFilter input

Last updated

Was this helpful?