appUserAccessByApp
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. Paginated via limit/offset.
appUserAccessByApp(
appId: BigInt!
status: String
limit: Int = 50
offset: Int = 0
): [AppUserAccess!]!
Arguments
appUserAccessByApp.appId ● BigInt! non-null scalar
Numeric id of the app whose access records to list.
appUserAccessByApp.status ● String scalar
Optional exact-match filter on access status (e.g. "active" or "revoked"). Omit to return records of all statuses.
appUserAccessByApp.limit ● Int deprecated scalar
Use appUserAccessConnection(first:, after:) instead. See /overview/pagination.
Maximum number of records to return. Defaults to 50; clamped to the range 1-200.
appUserAccessByApp.offset ● Int deprecated scalar
Use appUserAccessConnection(first:, after:) instead. See /overview/pagination.
Number of records to skip for pagination. Defaults to 0; negative values are treated as 0.
Type
AppUserAccess object
A user's entitlement to a specific app: whether (and via which tier) they may access it. At most one row per (app, user).