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

UserFilterInput

Defines the filter options for listing users.

input UserFilterInput {
  dataSources: [ID!]
  exclude: [String!]
  hasTags: [TagFilter!]
  isCollibraUser: Boolean
  search: String
  type: UserType
  whoAbacRule: WhoAbacRuleInput
}

Fields

dataSources ● [ID!] list scalar

Only return the users what have an account in any of the given data sources.

exclude ● [String!] list scalar

Exclude a specific fixed list of users.

hasTags ● [TagFilter!] list input

Only return users that have certain tags.

isCollibraUser ● Boolean scalar

To filter users that exists or not exists as a Collibra platform user

The search string to use (will do a case-insensitive 'contains').

type ● UserType enum

Only return users of the given type. System users are excluded unless this is explicitly set to System.

whoAbacRule ● WhoAbacRuleInput input

Return only users matched by the given WHO ABAC rule. ANDed with all other filter fields (e.g. search, type, dataSources).

Member Of

users query

Last updated

Was this helpful?