From dd488e0a51d6f1bb15d6881c5e9e3dcdb3625da2 Mon Sep 17 00:00:00 2001 From: Anton Burnashev Date: Tue, 10 Sep 2024 17:31:11 +0200 Subject: [PATCH] Update docs/website/docs/tutorial/rest-api.md Co-authored-by: Akela Drissner-Schmid <32450038+akelad@users.noreply.github.com> --- docs/website/docs/tutorial/rest-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/website/docs/tutorial/rest-api.md b/docs/website/docs/tutorial/rest-api.md index 4242fb36bb..fdbe0ed8ee 100644 --- a/docs/website/docs/tutorial/rest-api.md +++ b/docs/website/docs/tutorial/rest-api.md @@ -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.