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

Asset

A verbal designation of a concept in a specific subject field.

type Asset implements Auditable, Node {
  attributes(
    limit: Int = 10
    offset: Int = 0
    order: [[AttributeOrder]]
    where: AttributeFilter
  ): [Attribute!]!
  booleanAttributes(
    limit: Int = 10
    offset: Int = 0
    order: [[BooleanAttributeOrder]]
    where: BooleanAttributeFilter
  ): [BooleanAttribute!]!
  createdBy: User
  createdOn: DateTime
  dateAttributes(
    limit: Int = 10
    offset: Int = 0
    order: [[DateAttributeOrder]]
    where: DateAttributeFilter
  ): [DateAttribute!]!
  displayName: String
  domain: Domain!
  externalMappings(
    limit: Int = 10
    offset: Int = 0
    order: [[ExternalMappingOrder]]
    where: ExternalMappingFilter
  ): [ExternalMapping!]!
  fullName: String!
  id: UUID!
  incomingRelations(
    limit: Int = 10
    offset: Int = 0
    order: [[RelationOrder]]
    where: RelationFilter
  ): [Relation!]!
  modifiedBy: User
  modifiedOn: DateTime
  multiValueAttributes(
    limit: Int = 10
    offset: Int = 0
    order: [[MultiValueAttributeOrder]]
    where: MultiValueAttributeFilter
  ): [MultiValueAttribute!]!
  numericAttributes(
    limit: Int = 10
    offset: Int = 0
    order: [[NumericAttributeOrder]]
    where: NumericAttributeFilter
  ): [NumericAttribute!]!
  outgoingRelations(
    limit: Int = 10
    offset: Int = 0
    order: [[RelationOrder]]
    where: RelationFilter
  ): [Relation!]!
  responsibilities(
    limit: Int = 10
    offset: Int = 0
    order: [[ResponsibilityOrder]]
    where: ResponsibilityFilter
  ): [Responsibility!]!
  status: Status
  stringAttributes(
    limit: Int = 10
    offset: Int = 0
    order: [[StringAttributeOrder]]
    where: StringAttributeFilter
  ): [StringAttribute!]!
  system: Boolean!
  tags(
    limit: Int = 10
    offset: Int = 0
    order: [[TagOrder]]
    where: TagFilter
  ): [Tag!]!
  type: AssetType!
}

Fields

attributes ● [Attribute!]! non-null interface

The list of all attributes available for this asset.

limit ● Int scalar

The maximum items to return.

offset ● Int scalar

The number of items to skip.

order ● [[AttributeOrder]] list input

Sorting parameters.

where ● AttributeFilter input

Filtering parameters.

booleanAttributes ● [BooleanAttribute!]! non-null object

The boolean attributes of this asset.

limit ● Int scalar

The maximum items to return.

offset ● Int scalar

The number of items to skip.

order ● [[BooleanAttributeOrder]] list input

Sorting parameters.

where ● BooleanAttributeFilter input

Filtering parameters.

createdBy ● User object

The user who created this resource.

createdOn ● DateTime scalar

The creation date of this resource.

dateAttributes ● [DateAttribute!]! non-null object

The date attributes of this asset.

limit ● Int scalar

The maximum items to return.

offset ● Int scalar

The number of items to skip.

order ● [[DateAttributeOrder]] list input

Sorting parameters.

where ● DateAttributeFilter input

Filtering parameters.

displayName ● String scalar

The display name of this asset.

domain ● Domain! non-null object

The parent domain of this asset.

externalMappings ● [ExternalMapping!]! non-null object

The list of external mappings of this asset.

limit ● Int scalar

The maximum items to return.

offset ● Int scalar

The number of items to skip.

order ● [[ExternalMappingOrder]] list input

Sorting parameters.

where ● ExternalMappingFilter input

Filtering parameters.

fullName ● String! non-null scalar

The full name of this asset. This value is always unique in its parent domain.

id ● UUID! non-null scalar

The universally unique identifier of this node.

incomingRelations ● [Relation!]! non-null object

The list of incoming relations for this asset.

limit ● Int scalar

The maximum items to return.

offset ● Int scalar

The number of items to skip.

order ● [[RelationOrder]] list input

Sorting parameters.

where ● RelationFilter input

Filtering parameters.

modifiedBy ● User object

The user who last modified this resource.

modifiedOn ● DateTime scalar

The last modified date of this resource.

multiValueAttributes ● [MultiValueAttribute!]! non-null object

The multi-value attributes of this asset.

limit ● Int scalar

The maximum items to return.

offset ● Int scalar

The number of items to skip.

order ● [[MultiValueAttributeOrder]] list input

Sorting parameters.

where ● MultiValueAttributeFilter input

Filtering parameters.

numericAttributes ● [NumericAttribute!]! non-null object

The numeric attributes of this asset.

limit ● Int scalar

The maximum items to return.

offset ● Int scalar

The number of items to skip.

order ● [[NumericAttributeOrder]] list input

Sorting parameters.

where ● NumericAttributeFilter input

Filtering parameters.

outgoingRelations ● [Relation!]! non-null object

The list of outgoing relations for this asset.

limit ● Int scalar

The maximum items to return.

offset ● Int scalar

The number of items to skip.

order ● [[RelationOrder]] list input

Sorting parameters.

where ● RelationFilter input

Filtering parameters.

responsibilities ● [Responsibility!]! non-null object

The list of responsibilities for this asset.

limit ● Int scalar

The maximum items to return.

offset ● Int scalar

The number of items to skip.

order ● [[ResponsibilityOrder]] list input

Sorting parameters.

where ● ResponsibilityFilter input

Filtering parameters.

status ● Status object

The status of this asset.

stringAttributes ● [StringAttribute!]! non-null object

The string attributes of this asset.

limit ● Int scalar

The maximum items to return.

offset ● Int scalar

The number of items to skip.

order ● [[StringAttributeOrder]] list input

Sorting parameters.

where ● StringAttributeFilter input

Filtering parameters.

system ● Boolean! non-null scalar

Whether this resource is reserved by the system.

tags ● [Tag!]! non-null object

The list of tags of this asset.

limit ● Int scalar

The maximum items to return.

offset ● Int scalar

The number of items to skip.

order ● [[TagOrder]] list input

Sorting parameters.

where ● TagFilter input

Filtering parameters.

type ● AssetType! non-null object

The asset type of this asset.

Interfaces

Auditable interface

An interface implemented by all types holding auditing information.

Node interface

A base interface implemented by all types.

Returned By

assets query ● complexRelations query

Member Of

Domain object ● Relation object ● Responsibility object

Last updated

Was this helpful?