From 2402761dddf099d1a71ee4cf0bcd9048ce3cecc2 Mon Sep 17 00:00:00 2001 From: Pedro Heyerdahl Date: Tue, 13 Dec 2022 21:18:12 -0300 Subject: [PATCH] fix integrationsstream next_page_token_jsonpath --- 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..49b8fd5 100644 --- a/tap_gorgias/streams.py +++ b/tap_gorgias/streams.py @@ -601,7 +601,7 @@ class IntegreationsStream(GorgiasStream): primary_keys = ["id"] # Link to the next items, if any. - next_page_token_jsonpath = "$.meta.next_items" + next_page_token_jsonpath = "$.meta.next_cursor" schema = th.PropertiesList( th.Property("id", th.IntegerType),