From f9a44ec09b06aa4424022af2dea6fb55d8cd74ef Mon Sep 17 00:00:00 2001 From: jared-rimmer Date: Mon, 8 Jul 2024 08:26:31 +0100 Subject: [PATCH] Update is_sorted to False in tickets stream --- tap_gorgias/streams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tap_gorgias/streams.py b/tap_gorgias/streams.py index 5d7c365..a496c25 100644 --- a/tap_gorgias/streams.py +++ b/tap_gorgias/streams.py @@ -28,7 +28,7 @@ class TicketsStream(GorgiasStream): path = "/api/views/{view_id}/items" primary_keys = ["id"] replication_key = "updated_datetime" - is_sorted = True + is_sorted = False # Link to the next items, if any. next_page_token_jsonpath = "$.meta.next_items"