node-sdk icon indicating copy to clipboard operation
node-sdk copied to clipboard

cloudbase node sdk

Results 17 node-sdk issues
Sort by recently updated
recently updated
newest added

https://github.com/advisories/GHSA-27h2-hvpr-p74q

我尝试使用Aggregate.match({ xxx: RegExp }) 但是报错了,我也查阅了db.command.aggregate 也没用对应的操作,只能进行具体字段的匹配吗?

`@cloudbase/database/src/validate.ts` 源码里要求 order 的类型是 ‘object’,值是 1 或者 -1,但是 QueryOption.order 多写了个数组,应该是 `order?: Record` 或者 `order?: Record` ``` // @cloudbase/node-sdk/types/index.d.ts export interface QueryOption extends BaseOption { limit?: number offset?: number projection?: Object...