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

AssetType

The type of an asset or complex relation.

type AssetType implements Auditable, Node, Type {
  acronym: String
  children(
    limit: Int = 10
    offset: Int = 0
    order: [[AssetTypeOrder]]
    where: AssetTypeFilter
  ): [AssetType!]!
  color: String!
  createdBy: User
  createdOn: DateTime
  description: String
  icon: String
  id: UUID!
  modifiedBy: User
  modifiedOn: DateTime
  name: String!
  parent: AssetType
  publicId: String!
  symbolType: String
  system: Boolean!
}

Fields

acronym ● String scalar

The acronym of this type.

children ● [AssetType!]! non-null object

The list of child asset types of this asset type.

limit ● Int scalar

The maximum items to return.

offset ● Int scalar

The number of items to skip.

order ● [[AssetTypeOrder]] list input

Sorting parameters.

where ● AssetTypeFilter input

Filtering parameters.

color ● String! non-null scalar

The user interface color of this type.

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

icon ● String scalar

The user interface icon of this type.

id ● UUID! non-null scalar

The universally unique identifier of this node.

modifiedBy ● User object

The user who last modified this resource.

modifiedOn ● DateTime scalar

The last modified date of this resource.

name ● String! non-null scalar

The name of this type.

parent ● AssetType object

The parent asset type of this asset type.

publicId ● String! non-null scalar

The public identifier of this type.

symbolType ● String scalar

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.

Type interface

An abstract parent of all types.

Member Of

Asset object ● AssetType object ● RelationType object

Last updated

Was this helpful?