I am looking to generate a comprehensive list of all the article URLs in my blog, which contains more than 150 articles.
This is what I have currently:
{% for article in blogs['myblog'].articles %}
{{article.url}}
{% endfor %}
The issue I am facing is that only 50 URLs are being displayed due to the default pagination limit set by Shopify. Does anyone have suggestions on how I can overcome this limitation? I would greatly appreciate any solutions involving Ajax or other methods.