Admin List Users not returning Pagination data

Hi guys! I just recently updated my better auth to 1.2.4 because previously on 1.1.1 I was only able to get the list of users from the listUsers API. However, after upgrading I'm still not able to get the pagination information from this endpoint. Any idea why?
const response = await authClient.admin.listUsers({
query: {
limit,
offset,
searchValue: options.search,
searchField: "name",
},
});
const response = await authClient.admin.listUsers({
query: {
limit,
offset,
searchValue: options.search,
searchField: "name",
},
});
2 Replies
josh-dev627
josh-dev627OP2w ago
GitHub
The pagination query for admin.listUsers did not return total. · I...
When the usePlural is set to true: database: drizzleAdapter(db, { provider: 'pg', schema, usePlural: true }) const users = await authClient.admin.listUsers({ query: { limit: 10, offset: 0 }...
josh-dev627
josh-dev627OP2w ago
GitHub
feat: refactor database adapters by Netrifier · Pull Request #1737...
Drizzle Adapter: Refactored the convertWhereClause function to handle all operator conversions. Changed the order of parameters convertWhereClause(model: string, where?: Where[]) to make them cons...

Did you find this page helpful?