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

GroupedUserAccessReturnItem

Represents the information about the access a specific user has on a data object across one or more access controls.

type GroupedUserAccessReturnItem {
  dataObject: DataObject!
  expiresAt: Time
  globalPermissions: [String]
  nearestAccessControls: [AccessControl]
  permissions: [String]
}

Fields

dataObject ● DataObject! non-null object

The data object the user has access to.

expiresAt ● Time scalar

The time the access for the user expires. This will always be null when there are multiple items in nearestAccessControls

globalPermissions ● [String] list scalar

The global permissions the user has on the data object.

nearestAccessControls ● [AccessControl] list object

The access controls that provide the access to the data object for the user.

permissions ● [String] list scalar

The permissions the user has on the data object.

Member Of

GroupedUserAccessReturnItemEdge object

Last updated

Was this helpful?