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

Tag

Represents a tag (key/value pair) on an entity.

type Tag {
  createdAt: Time!
  inherited: Boolean
  key: String!
  modifiedAt: Time!
  source: String!
  stringValue: String
}

Fields

createdAt ● Time! non-null scalar

Time when the tag was first created.

inherited ● Boolean scalar

Indicates if this tag was set directly on the entity or if it was inherited from a parent entity.

key ● String! non-null scalar

The key of the tag.

modifiedAt ● Time! non-null scalar

Time when the tag was last modified.

source ● String! non-null scalar

The source of the tag to differentiate between where the tag was coming from (e.g. the data source itself, Collibra catalog, ...).

stringValue ● String scalar

The string value of the tag.

Member Of

TagEdge object

Implemented By

TagResult union

Last updated

Was this helpful?