How would I change update_at_min argument in the s...
# troubleshooting
r
How would I change update_at_min argument in the shopify URL for the pipeline? It's not going far back enough and changing "start_date:" does not seem to affect it.  Example below.
Copy code
<https://royzac.myshopify.com/admin/api/2021-04/checkouts.json?since_id=1&updated_at_min=2021-08-29+04%3A51%3A23%2B00%3A00&updated_at_max=2021-08-29+05%3A25%3A27%2B00%3A00&limit=175&status=any>
v
From a quick look at the tap it looks like it's coming from the bookmark https://github.com/singer-io/tap-shopify/blob/9348f6a09fb683361dced4fb0db48f38d78d2fd7/tap_shopify/streams/base.py#L126 A full table sync would do it potentially? Just a guess I havne't used this tap
r
@visch thanks for the response. It seems like adjusting the "start_date" would have solved the issue given the logic under get_bookmark() on line 90 : /
v
Even better!!