1
0
Fork 0
mirror of synced 2024-06-29 19:41:03 +12:00

Merge pull request #5067 from Budibase/deep-rest-pagination-token

Allow deep-getting of pagination params from REST responses
This commit is contained in:
Andrew Kingston 2022-03-24 06:53:05 -07:00 committed by GitHub
commit 1ca01a7a16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 200 additions and 883 deletions

View file

@ -149,6 +149,7 @@
"@types/jest": "^26.0.23",
"@types/koa": "^2.13.3",
"@types/koa-router": "^7.4.2",
"@types/lodash": "4.14.180",
"@types/node": "^15.12.4",
"@types/oracledb": "^5.2.1",
"@types/redis": "^4.0.11",

View file

@ -11,6 +11,7 @@ import {
PaginationValues,
} from "../definitions/datasource"
import { IntegrationBase } from "./base/IntegrationBase"
import { get } from "lodash"
const BodyTypes = {
NONE: "none",
@ -163,7 +164,7 @@ module RestModule {
// Check if a pagination cursor exists in the response
let nextCursor = null
if (pagination?.responseParam) {
nextCursor = data?.[pagination.responseParam]
nextCursor = get(data, pagination.responseParam)
}
return {

File diff suppressed because it is too large Load diff