Skip to content

Commit

Permalink
Update low-code docs to reflect new inject_into parameter renaming (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
sherifnada authored Sep 9, 2022
1 parent 787e87d commit aa57c43
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions docs/connector-development/config-based/pagination.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ paginator:
type: "LimitPaginator"
page_size: 5
limit_option:
option_type: request_parameter
inject_into: request_parameter
field_name: page_size
pagination_strategy:
type: "PageIncrement"
page_token:
option_type: "request_parameter"
inject_into: "request_parameter"
field_name: "page"
```
Expand All @@ -59,7 +59,7 @@ paginator:
type: "LimitPaginator"
page_size: 5
limit_option:
option_type: request_parameter
inject_into: request_parameter
field_name: page_size
pagination_strategy:
type: "OffsetIncrement"
Expand Down Expand Up @@ -124,4 +124,4 @@ Assuming the endpoint to fetch data from is `https://cloud.airbyte.com/api/get_d
the first request will be sent as `https://cloud.airbyte.com/api/get_data`

Assuming the response's next url is `https://cloud.airbyte.com/api/get_data?page=1&page_size=100`,
the next request will be sent as `https://cloud.airbyte.com/api/get_data?page=1&page_size=100`
the next request will be sent as `https://cloud.airbyte.com/api/get_data?page=1&page_size=100`
4 changes: 2 additions & 2 deletions docs/connector-development/config-based/request-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ paginator:
type: "LimitPaginator"
page_size: 5
limit_option:
option_type: request_parameter
inject_into: request_parameter
field_name: page_size
pagination_strategy:
type: "PageIncrement"
page_token:
option_type: "request_parameter"
inject_into: "request_parameter"
field_name: "page"
```

Expand Down

0 comments on commit aa57c43

Please sign in to comment.