searchUsers:无法正确设置选项

searchUsers: unable to set option properly

我需要从我的 kuzzle 中获取所有用户,所以我尝试了:

// Getting Users
    const users = await kuzzle.security.searchUsers({ 
      options: {
        size: 25
      }
    });
    
    console.log(users)

但输出是The argument "options" is not allowed at this level of a search query. 为什么它这么说我?

好的,所以我发现它只是 2 个单独的参数

这是我的工作代码:

const users = await kuzzle.security.searchUsers({}, {
  size: 10000
});