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

AccessWhatFilterInput

Defines the filter options for listing the WHAT items of an access control. When using multiple filter options, all these options need to apply to return the item.

input AccessWhatFilterInput {
  abacRule: ID
  dataSources: [ID!]
  hasTags: [TagFilter!]
  includeDeleted: Boolean
  owners: [String!]
  search: String
}

Fields

abacRule ● ID scalar

Optional ABAC rule to filter the what-list on. Only applicable when requesting data objects WHAT list without unpacking

dataSources ● [ID!] list scalar

Limit only to data objects in specific data sources.

hasTags ● [TagFilter!] list input

Filter by which tags the WHAT item needs to have.

includeDeleted ● Boolean scalar

If true, also deleted WHAT items are returned.

owners ● [String!] list scalar

List of user IDs to filter on who owns the WHAT items.

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

Last updated

Was this helpful?