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

AccessRequestFilterInput

Defines the filter options for listing access requests.

input AccessRequestFilterInput {
  assignees: [String!]
  createdBy: String
  datasource: String
  outcomes: [AccessRequestOutcome!]
  search: String
  states: [AccessRequestStatus!]
  who: [String!]
  workflowInstanceId: ID
}

Fields

assignees ● [String!] list scalar

Filter on the assignees for the access request.

createdBy ● String scalar

Filter on the user that created the access request.

datasource ● String scalar

The data source that is involved in the access request.

outcomes ● [AccessRequestOutcome!] list enum

Filter on the outcomes of the access request.

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

states ● [AccessRequestStatus!] list enum

Filter on the states of access request.

who ● [String!] list scalar

Filter on the beneficiaries for the access request.

workflowInstanceId ● ID scalar

Filter on the workflow instance that owns the access request.

Member Of

accessRequests query

Last updated

Was this helpful?