使用 REST API 可以检索的行数 LoopbackJS/Oracle 是否有限制?

Is there a limit on how many rows LoopbackJS/Oracle can retrieve using the REST API?

我正在使用 LoopbackJS 和 Oracle 数据库。在 GET API 中,我能够检索最多 3000 个结果作为数组作为响应。有什么方法可以增加提取大小吗?

loopback中,server/datasources.json文件有一个db对象,其中maxRows属性用于定义从数据库检索的最大限制(使用 oracledb npm)。默认值为 3000。 Refer here