list - Auth Module Reference
This documentation provides a reference to the list
method. This belongs to the Auth Module.
This method retrieves a paginated list of auth users based on optional filters and configuration.
Example
To retrieve a list of auth users 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
filters
FilterableAuthUserPropsThe filters to apply on the retrieved auth users.
filters
FilterableAuthUserPropsconfig
FindConfig<AuthUserDTO>The configurations determining how the auth user is retrieved. Its properties, such as select
or relations
, accept the
attributes or relations associated with a auth user.
config
FindConfig<AuthUserDTO>select
or relations
, accept the
attributes or relations associated with a auth user.Returns
The list of auth users.
Was this section helpful?