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

AccessRequestInput

Input type for creating and updating access requests.

input AccessRequestInput {
  anyExpirationAllowed: Boolean
  description: String
  exceptions: [AccessRequestExceptionInput!]
  implementationExpiresAt: Time
  name: String
  what: [AccessRequestWhatInput!]
  who: AccessRequestWhoInput
}

Fields

anyExpirationAllowed ● Boolean scalar

If true, any expiration date can be set by the implementer to satisfy the request.

description ● String scalar

The description for the access request.

exceptions ● [AccessRequestExceptionInput!] list input

Optional list of Mask or FilterRule exceptions. When non-empty, a GrantVariation is created for the requester instead of the standard Grant flow.

implementationExpiresAt ● Time scalar

Optional expiration date for the request.

name ● String scalar

The display name for the access request.

what ● [AccessRequestWhatInput!] list input

The WHAT items for the acccess request.

who ● AccessRequestWhoInput input

The beneficiaries for the access request.

Member Of

createAccessRequest mutation

Last updated

Was this helpful?