appUserAccessConnection
Admin view of the user access records for an app (who has been granted/revoked access and on which tier). Requires the 'manage_access_tiers' permission on the app; super admins bypass. Ordered by most recently updated. Relay cursor connection; prefer this over the offset-based appUserAccessByApp.
appUserAccessConnection(
appId: BigInt!
first: Int
after: String
status: String
): AppUserAccessConnection!
Arguments
appUserAccessConnection.appId ● BigInt! non-null scalar
Numeric id of the app whose access records to list.
appUserAccessConnection.first ● Int scalar
Return the first N edges after after. Default 50; clamped to 1..200.
appUserAccessConnection.after ● String scalar
Opaque cursor: return edges after this one. Pass a previous page's pageInfo.endCursor. Omit for the first page.
appUserAccessConnection.status ● String scalar
Optional exact-match filter on access status (e.g. "active" or "revoked"). Omit to return records of all statuses.
Type
AppUserAccessConnection object
A Relay cursor connection over AppUserAccess records. Page with first/after; pass pageInfo.endCursor back as after for the next page.