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

UserFilter

A Collibra user. Any resource has a creation date and the last modification date. Collibra also stores which user made each of these operations. The *User* entity is related to all types as the creator and/or last modifier of the entity.

input UserFilter {
  _and: [UserFilter]
  _or: [UserFilter]
  email: StringFilter
  enabled: Boolean
  firstName: StringFilter
  fullName: StringFilter
  id: UUIDFilter
  lastName: StringFilter
  system: Boolean
}

Fields

_and ● [UserFilter] list input

_or ● [UserFilter] list input

email ● StringFilter input

The primary email address of this user.

enabled ● Boolean scalar

Whether the user is enabled.

firstName ● StringFilter input

The first name of this user.

fullName ● StringFilter input

The first name and last name of this user.

id ● UUIDFilter input

The universally unique identifier of this node.

lastName ● StringFilter input

The last name of this user.

system ● Boolean scalar

Whether this user is reserved by the system.

Member Of

UserCollectionFilter input ● UserFilter input

Last updated

Was this helpful?