Skip to content

Commit

Permalink
Update docs/website/docs/tutorial/rest-api.md
Browse files Browse the repository at this point in the history
Co-authored-by: Akela Drissner-Schmid <[email protected]>
  • Loading branch information
burnash and akelad committed Sep 11, 2024
1 parent 4e884ad commit dd488e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/website/docs/tutorial/rest-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ load_info = pipeline.run(github_source())
print(load_info)
```

In this configuration, the `since` parameter is defined as an special incremental parameter. The `cursor_path` field specifies the JSON path to the field that will be used to fetch the updated data and we use the `initial_value` for the initial value for the incremental parameter. This value will be used in the first request to fetch the data.
In this configuration, the `since` parameter is defined as a special incremental parameter. The `cursor_path` field specifies the JSON path to the field that will be used to fetch the updated data and we use the `initial_value` for the initial value for the incremental parameter. This value will be used in the first request to fetch the data.

When the pipeline runs, dlt will automatically update the `since` parameter with the latest value from the response data. This way, you can fetch only the new or updated data from the API.

Expand Down

0 comments on commit dd488e0

Please sign in to comment.