ClaimsResetAllResponse
Response for bulk user claims reset operations.
Provides detailed statistics about the batch claims reset process, including success and failure counts for monitoring and auditing purposes.
type ClaimsResetAllResponse {
successCount: Int!
errorCount: Int!
totalProcessed: Int!
completed: Boolean!
}
Fields
ClaimsResetAllResponse.successCount
● Int!
non-null scalar
Number of users whose claims were successfully reset.
Indicates how many user accounts had their authorization claims successfully updated during the batch operation.
ClaimsResetAllResponse.errorCount
● Int!
non-null scalar
Number of users whose claims reset failed.
Indicates how many user accounts encountered errors during the claims reset process and may need manual intervention.
ClaimsResetAllResponse.totalProcessed
● Int!
non-null scalar
Total number of users processed in the batch operation.
Sum of successful and failed operations, representing the complete scope of the batch claims reset.
ClaimsResetAllResponse.completed
● Boolean!
non-null scalar
Whether the entire batch operation completed successfully.
Indicates if the batch process finished without critical errors, though individual user operations may still have failed.
Returned By
claimsResetAll
mutation