> For the complete documentation index, see [llms.txt](https://developer.collibra.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.collibra.com/api/graphql/knowledge-graph/object-types/community.md).

# Community

A grouping of subcommunities and domains.

```graphql
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

#### createdBy ● [`User`](/api/graphql/knowledge-graph/object-types/user.md) object <a href="#created-by" id="created-by"></a>

The user who created this resource.

#### createdOn ● [`DateTime`](/api/graphql/knowledge-graph/scalars/date-time.md) scalar <a href="#created-on" id="created-on"></a>

The creation date of this resource.

#### description ● [`String`](/api/graphql/knowledge-graph/scalars/string.md) scalar <a href="#description" id="description"></a>

The description of this organization.

#### externalMappings ● [`[ExternalMapping!]!`](/api/graphql/knowledge-graph/object-types/external-mapping.md) non-null object <a href="#external-mappings" id="external-mappings"></a>

The list of external mappings corresponding to this community.

**limit ●** [**`Int`**](/api/graphql/knowledge-graph/scalars/int.md) **scalar**

The maximum items to return.

**offset ●** [**`Int`**](/api/graphql/knowledge-graph/scalars/int.md) **scalar**

The number of items to skip.

**order ●** [**`[[ExternalMappingOrder]]`**](/api/graphql/knowledge-graph/input-types/external-mapping-order.md) **list input**

Sorting parameters.

**where ●** [**`ExternalMappingFilter`**](/api/graphql/knowledge-graph/input-types/external-mapping-filter.md) **input**

Filtering parameters.

#### id ● [`UUID!`](/api/graphql/knowledge-graph/scalars/uuid.md) non-null scalar <a href="#id" id="id"></a>

The universally unique identifier of this node.

#### meta ● [`Boolean!`](/api/graphql/knowledge-graph/scalars/boolean.md) non-null scalar <a href="#meta" id="meta"></a>

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`](/api/graphql/knowledge-graph/object-types/user.md) object <a href="#modified-by" id="modified-by"></a>

The user who last modified this resource.

#### modifiedOn ● [`DateTime`](/api/graphql/knowledge-graph/scalars/date-time.md) scalar <a href="#modified-on" id="modified-on"></a>

The last modified date of this resource.

#### name ● [`String!`](/api/graphql/knowledge-graph/scalars/string.md) non-null scalar <a href="#name" id="name"></a>

The name of this organization.

#### parent ● [`Community`](/api/graphql/knowledge-graph/object-types/community.md) object <a href="#parent" id="parent"></a>

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

#### readPermissions ● [`[ReadPermission!]!`](/api/graphql/knowledge-graph/object-types/read-permission.md) non-null object <a href="#read-permissions" id="read-permissions"></a>

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

**limit ●** [**`Int`**](/api/graphql/knowledge-graph/scalars/int.md) **scalar**

The maximum items to return.

**offset ●** [**`Int`**](/api/graphql/knowledge-graph/scalars/int.md) **scalar**

The number of items to skip.

**order ●** [**`[[ReadPermissionOrder]]`**](/api/graphql/knowledge-graph/input-types/read-permission-order.md) **list input**

Sorting parameters.

**where ●** [**`ReadPermissionFilter`**](/api/graphql/knowledge-graph/input-types/read-permission-filter.md) **input**

Filtering parameters.

#### responsibilities ● [`[Responsibility!]!`](/api/graphql/knowledge-graph/object-types/responsibility.md) non-null object <a href="#responsibilities" id="responsibilities"></a>

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

**limit ●** [**`Int`**](/api/graphql/knowledge-graph/scalars/int.md) **scalar**

The maximum items to return.

**offset ●** [**`Int`**](/api/graphql/knowledge-graph/scalars/int.md) **scalar**

The number of items to skip.

**order ●** [**`[[ResponsibilityOrder]]`**](/api/graphql/knowledge-graph/input-types/responsibility-order.md) **list input**

Sorting parameters.

**where ●** [**`ResponsibilityFilter`**](/api/graphql/knowledge-graph/input-types/responsibility-filter.md) **input**

Filtering parameters.

#### subCommunities ● [`[Community!]!`](/api/graphql/knowledge-graph/object-types/community.md) non-null object <a href="#sub-communities" id="sub-communities"></a>

The list of communities available under this community.

**limit ●** [**`Int`**](/api/graphql/knowledge-graph/scalars/int.md) **scalar**

The maximum items to return.

**offset ●** [**`Int`**](/api/graphql/knowledge-graph/scalars/int.md) **scalar**

The number of items to skip.

**order ●** [**`[[CommunityOrder]]`**](/api/graphql/knowledge-graph/input-types/community-order.md) **list input**

Sorting parameters.

**where ●** [**`CommunityFilter`**](/api/graphql/knowledge-graph/input-types/community-filter.md) **input**

Filtering parameters.

#### subDomains ● [`[Domain!]!`](/api/graphql/knowledge-graph/object-types/domain.md) non-null object <a href="#sub-domains" id="sub-domains"></a>

The list of domains available under this community.

**limit ●** [**`Int`**](/api/graphql/knowledge-graph/scalars/int.md) **scalar**

The maximum items to return.

**offset ●** [**`Int`**](/api/graphql/knowledge-graph/scalars/int.md) **scalar**

The number of items to skip.

**order ●** [**`[[DomainOrder]]`**](/api/graphql/knowledge-graph/input-types/domain-order.md) **list input**

Sorting parameters.

**where ●** [**`DomainFilter`**](/api/graphql/knowledge-graph/input-types/domain-filter.md) **input**

Filtering parameters.

#### subOrganizations ● [`[Organization!]!`](/api/graphql/knowledge-graph/interfaces/organization.md) non-null interface <a href="#sub-organizations" id="sub-organizations"></a>

The list of organizations available under this community.

**limit ●** [**`Int`**](/api/graphql/knowledge-graph/scalars/int.md) **scalar**

The maximum items to return.

**offset ●** [**`Int`**](/api/graphql/knowledge-graph/scalars/int.md) **scalar**

The number of items to skip.

**order ●** [**`[[OrganizationOrder]]`**](/api/graphql/knowledge-graph/input-types/organization-order.md) **list input**

Sorting parameters.

**where ●** [**`OrganizationFilter`**](/api/graphql/knowledge-graph/input-types/organization-filter.md) **input**

Filtering parameters.

#### system ● [`Boolean!`](/api/graphql/knowledge-graph/scalars/boolean.md) non-null scalar <a href="#system" id="system"></a>

Whether this resource is reserved by the system.

### Interfaces

#### [`Auditable`](/api/graphql/knowledge-graph/interfaces/auditable.md) interface

An interface implemented by all types holding auditing information.

#### [`Node`](/api/graphql/knowledge-graph/interfaces/node.md) interface

A base interface implemented by all types.

#### [`Organization`](/api/graphql/knowledge-graph/interfaces/organization.md) interface

The parent interface for both Community and Domain types.

### Returned By

[`communities`](/api/graphql/knowledge-graph/queries/communities.md) query

### Member Of

[`Community`](/api/graphql/knowledge-graph/object-types/community.md) object ● [`Domain`](/api/graphql/knowledge-graph/object-types/domain.md) object ● [`Organization`](/api/graphql/knowledge-graph/interfaces/organization.md) interface ● [`ReadPermission`](/api/graphql/knowledge-graph/object-types/read-permission.md) object ● [`Responsibility`](/api/graphql/knowledge-graph/object-types/responsibility.md) object
