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

Relation

An association between two assets representing the source and target of the relation.

type Relation implements Auditable, Node {
  createdBy: User
  createdOn: DateTime
  id: UUID!
  modifiedBy: User
  modifiedOn: DateTime
  source: Asset!
  system: Boolean!
  target: Asset!
  type: RelationType!
}

Fields

The user who created this resource.

The creation date of this resource.

Relation.idUUID! non-null scalar

The universally unique identifier of this node.

The user who last modified this resource.

The last modified date of this resource.

Relation.sourceAsset! non-null object

The source asset or head of this relation.

Relation.systemBoolean! non-null scalar

Whether this resource is reserved by the system.

Relation.targetAsset! non-null object

The target asset or tail of this relation.

Relation.typeRelationType! non-null object

The relation type of this relation.

Interfaces

Auditable interface

An interface implemented by all types holding auditing information.

Node interface

A base interface implemented by all types.

Member Of

Asset object

Last updated

Was this helpful?