Andy Carter
04/28/2025, 9:53 AMsince
and until
, so those exist as params to my query, but they are not present in the API response.
Is there any way to reliably access the params sent in a post-query method like post_process
or get_records
? Or would I need to persist those values to instance variables (self.since, self.until etc) on each iteration?Reuben (Matatika)
04/28/2025, 3:45 PMIs there any way to reliably access the params sent in a post-query method likeMy first thought here would be to use context i.e. set up a parent stream that yields your date range values fororpost_process
? Or would I need to persist those values to instance variables (self.since, self.until etc) on each iteration?get_records
since
and until
. Then you wouldn't need the paginator above.
Related:
https://github.com/meltano/sdk/discussions/2880
https://github.com/meltano/sdk/pull/2888Andy Carter
04/28/2025, 4:00 PM