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

OrganizationReferenceFilter

The parent interface for both Community and Domain types.

input OrganizationReferenceFilter {
  _and: [OrganizationReferenceFilter]
  _null: Boolean
  _or: [OrganizationReferenceFilter]
  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

_and ● [OrganizationReferenceFilter] list input

_null ● Boolean scalar

The field value is null.

createdBy ● UserReferenceFilter input

The user who created this resource.

createdOn ● DateTimeFilter input

The creation date of this resource.

description ● StringFilter input

The description of this organization.

id ● UUIDFilter input

The universally unique identifier of this node.

meta ● Boolean 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 ● UserReferenceFilter input

The user who last modified this resource.

modifiedOn ● DateTimeFilter input

The last modified date of this resource.

name ● StringFilter input

The name of this organization.

parent ● CommunityReferenceFilter input

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

readPermissions ● ReadPermissionCollectionFilter input

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

responsibilities ● ResponsibilityCollectionFilter input

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

system ● Boolean scalar

Whether this resource is reserved by the system.

Member Of

OrganizationReferenceFilter input

Last updated

Was this helpful?