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

Issue

Represents an issue in Collibra Data Access. An issue can be created by the system when a potential problem is detected.

type Issue {
  createdAt: Time!
  entity: IssueEntity!
  entityId: ID!
  entityType: EntityType!
  issueLevel: IssueLevel!
  issueType: IssueType!
  message: String!
  otherEntities: [IssueOtherEntity!]!
  otherEntityId: String @deprecated
  otherEntityType: EntityType @deprecated
  structuredError: StructuredError
}

Fields

createdAt ● Time! non-null scalar

The time at which the issue was initially raised.

entity ● IssueEntity! non-null union

The entity object on which the issue occurs.

entityId ● ID! non-null scalar

The ID of the entity on which the issue occurs.

entityType ● EntityType! non-null enum

The type of the entity on which the issue occurs.

issueLevel ● IssueLevel! non-null enum

The severity level of the issue.

issueType ● IssueType! non-null enum

The type of issue.

message ● String! non-null scalar

The message describing the issue.

otherEntities ● [IssueOtherEntity!]! non-null object

The list of additional entities the issue may be linked to.

otherEntityId ● String deprecated scalar

WARNING - DEPRECATED

Use otherEntities instead. Resolved from the first element of otherEntities.

The ID of an optional additional entity the issue may be linked to.

otherEntityType ● EntityType deprecated enum

WARNING - DEPRECATED

Use otherEntities instead. Resolved from the first element of otherEntities.

The type of an optional additional entity the issue may be linked to.

structuredError ● StructuredError object

The categorised error behind this issue, when the agent provided one. Prefer this over message when present; it carries the category, hint, affected resource and missing permissions.

Member Of

IssueEdge object

Last updated

Was this helpful?