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

Community

A grouping of subcommunities and domains.

type Community implements Auditable, Node, Organization {
  createdBy: User
  createdOn: DateTime
  description: String
  externalMappings(
    limit: Int = 10
    offset: Int = 0
    order: [[ExternalMappingOrder]]
    where: ExternalMappingFilter
  ): [ExternalMapping!]!
  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!]!
  subCommunities(
    limit: Int = 10
    offset: Int = 0
    order: [[CommunityOrder]]
    where: CommunityFilter
  ): [Community!]!
  subDomains(
    limit: Int = 10
    offset: Int = 0
    order: [[DomainOrder]]
    where: DomainFilter
  ): [Domain!]!
  subOrganizations(
    limit: Int = 10
    offset: Int = 0
    order: [[OrganizationOrder]]
    where: OrganizationFilter
  ): [Organization!]!
  system: Boolean!
}

Fields

The user who created this resource.

The creation date of this resource.

The description of this organization.

The list of external mappings corresponding to this community.

Community.externalMappings.limitInt scalar

The maximum items to return.

Community.externalMappings.offsetInt scalar

The number of items to skip.

Community.externalMappings.order[[ExternalMappingOrder]] list input

Sorting parameters.

Community.externalMappings.whereExternalMappingFilter input

Filtering parameters.

Community.idUUID! non-null scalar

The universally unique identifier of this node.

Community.metaBoolean! 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*.

The user who last modified this resource.

The last modified date of this resource.

Community.nameString! non-null scalar

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.

Community.readPermissions.limitInt scalar

The maximum items to return.

Community.readPermissions.offsetInt scalar

The number of items to skip.

Community.readPermissions.order[[ReadPermissionOrder]] list input

Sorting parameters.

Community.readPermissions.whereReadPermissionFilter input

Filtering parameters.

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

Community.responsibilities.limitInt scalar

The maximum items to return.

Community.responsibilities.offsetInt scalar

The number of items to skip.

Community.responsibilities.order[[ResponsibilityOrder]] list input

Sorting parameters.

Community.responsibilities.whereResponsibilityFilter input

Filtering parameters.

The list of communities available under this community.

Community.subCommunities.limitInt scalar

The maximum items to return.

Community.subCommunities.offsetInt scalar

The number of items to skip.

Community.subCommunities.order[[CommunityOrder]] list input

Sorting parameters.

Community.subCommunities.whereCommunityFilter input

Filtering parameters.

Community.subDomains[Domain!]! non-null object

The list of domains available under this community.

Community.subDomains.limitInt scalar

The maximum items to return.

Community.subDomains.offsetInt scalar

The number of items to skip.

Community.subDomains.order[[DomainOrder]] list input

Sorting parameters.

Community.subDomains.whereDomainFilter input

Filtering parameters.

The list of organizations available under this community.

Community.subOrganizations.limitInt scalar

The maximum items to return.

Community.subOrganizations.offsetInt scalar

The number of items to skip.

Community.subOrganizations.order[[OrganizationOrder]] list input

Sorting parameters.

Community.subOrganizations.whereOrganizationFilter input

Filtering parameters.

Community.systemBoolean! non-null scalar

Whether this resource is reserved by the system.

Interfaces

Auditable interface

An interface implemented by all types holding auditing information.

Node interface

A base interface implemented by all types.

Organization interface

The parent interface for both Community and Domain types.

Returned By

communities query

Member Of

Community object ● Domain object ● Organization interface ● ReadPermission object ● Responsibility object

Last updated

Was this helpful?