Hi @Louai_Aloui
You can use something like
await strapi
.query('user', 'users-permissions')
.find({ _limit: 1 });
This will find all users but you could always customize this, I think that this will also return the groups ?
Hi @Louai_Aloui
You can use something like
await strapi
.query('user', 'users-permissions')
.find({ _limit: 1 });
This will find all users but you could always customize this, I think that this will also return the groups ?