I am working on displaying blog posts on product pages by matching their tags. I currently have this code in place, however it is only fetching the most recent 50 posts. How can I iterate through all articles?
{% for article in blogs.news.articles %}
{% for tag in product.tags %}
{% if article.tags contains tag %}
{{ article.title }}
{% endif %}
{% endfor %}
{% endfor %}