- Get Started
- Product
- Resources
- Tools & SDKs
- Framework
- Reference
Menu
- Get Started
- Product
- Resources
- Tools & SDKs
- Framework
- Reference
listAndCountAuthIdentities - Auth Module Reference
This documentation provides a reference to the listAndCountAuthIdentities
method. This belongs to the Auth Module.
Note: You should only use this methods when implementing complex customizations. For common cases, check out available workflows instead.
This method retrieves a paginated list of auth identities along with the total count of available auth identities satisfying the provided filters.
Example#
To retrieve a list of auth identities using their IDs:
By default, only the first 15
records are retrieved. You can control pagination by specifying the skip
and take
properties of the config
parameter:
Parameters#
The filters to apply on the retrieved auth identities.
The configurations determining how the auth identity is retrieved. Its properties, such as select
or relations
, accept the
attributes or relations associated with a auth identity.
select
or relations
, accept the
attributes or relations associated with a auth identity.Returns#
Promise
Promise<[AuthIdentityDTO[], number]>The list of auth identities along with their total count.
Promise
Promise<[AuthIdentityDTO[], number]>Was this page helpful?