File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
docs/connector-development/config-based Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,12 @@ paginator:
32
32
type : " LimitPaginator"
33
33
page_size : 5
34
34
limit_option :
35
- option_type : request_parameter
35
+ inject_into : request_parameter
36
36
field_name : page_size
37
37
pagination_strategy :
38
38
type : " PageIncrement"
39
39
page_token :
40
- option_type : " request_parameter"
40
+ inject_into : " request_parameter"
41
41
field_name : " page"
42
42
` ` `
43
43
@@ -59,7 +59,7 @@ paginator:
59
59
type: "LimitPaginator"
60
60
page_size: 5
61
61
limit_option:
62
- option_type : request_parameter
62
+ inject_into : request_parameter
63
63
field_name: page_size
64
64
pagination_strategy:
65
65
type: "OffsetIncrement"
@@ -124,4 +124,4 @@ Assuming the endpoint to fetch data from is `https://cloud.airbyte.com/api/get_d
124
124
the first request will be sent as `https://cloud.airbyte.com/api/get_data`
125
125
126
126
Assuming the response's next url is `https://cloud.airbyte.com/api/get_data?page=1&page_size=100`,
127
- the next request will be sent as `https://cloud.airbyte.com/api/get_data?page=1&page_size=100`
127
+ the next request will be sent as `https://cloud.airbyte.com/api/get_data?page=1&page_size=100`
Original file line number Diff line number Diff line change @@ -54,12 +54,12 @@ paginator:
54
54
type: "LimitPaginator"
55
55
page_size: 5
56
56
limit_option:
57
- option_type : request_parameter
57
+ inject_into : request_parameter
58
58
field_name: page_size
59
59
pagination_strategy:
60
60
type: "PageIncrement"
61
61
page_token:
62
- option_type : "request_parameter"
62
+ inject_into : "request_parameter"
63
63
field_name: "page"
64
64
` ` `
65
65
You can’t perform that action at this time.
0 commit comments