My goal is to get an Array of all of the Product Objects so that we can make use of that data using our simple Node app
I tried making an http request to this endpoint
/admin/api/2021-01/products.json?limit=250
but we have over 600+ products and the limit for the request is 250
I read a documentation about cursor-based pagination
https://shopify.dev/tutorials/make-paginated-requests-to-rest-admin-api
But I can’t understand it, I mean how can I apply this to a get request then get the response object?
Hopefully someone can help me with this matter