Using the GraphQL Api, the tags are not always included, despite the articles/blog posts being tagged.
query BlogArticleList($id: ID!, $locale: String!, $lastPost: String) {
blog(id: $id) {
id
title
handle
translations(locale: $locale) {
key
locale
}
articles(first: 50, reverse: true, after: $lastPost) {
nodes {
id
handle
title
summary
tags
}
}
Here’s the query I’m running above, if I set the first
to something smaller, the amount of posts that come back with tags does somehow increase.
I switched back to the REST Admin API client for now as that has all of the tags even if I do request all 250, but still remains a seeming bug for GraphQL