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

AccessFilterInput

For filtering access elements. When using multiple filter options, all these options need to apply to return the item.

input AccessFilterInput {
  actions: [AccessControlAction!]
  categories: [String!]
  hasTags: [TagFilter!]
  owners: [String!]
  search: String
  states: [AccessControlState!]
}

Fields

actions ● [AccessControlAction!] list enum

The actions the access controls should have.

categories ● [String!] list scalar

The grant categories the access control should be in.

hasTags ● [TagFilter!] list input

Filter by which tags the access control needs to have.

owners ● [String!] list scalar

The access control must have any of the given owners (by user ID).

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

states ● [AccessControlState!] list enum

The states the access controls should be in.

Last updated

Was this helpful?