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

DomainType

The domain type of a resource.

type DomainType implements Auditable, Node {
  children(
    limit: Int = 10
    offset: Int = 0
    order: [[DomainTypeOrder]]
    where: DomainTypeFilter
  ): [DomainType!]!
  createdBy: User
  createdOn: DateTime
  description: String
  id: UUID!
  meta: Boolean
  modifiedBy: User
  modifiedOn: DateTime
  name: String
  parent: DomainType
  publicId: String
  system: Boolean!
}

Fields

children ● [DomainType!]! non-null object

A list of child domain types for this domain type.

limit ● Int scalar

The maximum items to return.

offset ● Int scalar

The number of items to skip.

order ● [[DomainTypeOrder]] list input

Sorting parameters.

where ● DomainTypeFilter input

Filtering parameters.

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 domain type.

id ● UUID! non-null scalar

The universally unique identifier of this node.

meta ● Boolean scalar

Whether this domain type is related to the Collibra metamodel.

modifiedBy ● User object

The user who last modified this resource.

modifiedOn ● DateTime scalar

The last modified date of this resource.

name ● String scalar

The name of the this domain type.

parent ● DomainType object

The parent domain type of this domain type. It is null for root types.

publicId ● String scalar

The public identifier of this domain type.

system ● Boolean! 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.

Member Of

Domain object ● DomainType object

Last updated

Was this helpful?