1
0
Fork 0
mirror of synced 2024-06-01 18:20:18 +12:00

Allow deep-getting of pagination params from REST responses

This commit is contained in:
Andrew Kingston 2022-03-24 10:07:23 +00:00
parent 12e079128c
commit 8e361afcda
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