GraphQL Blog Article Tag not always included in response

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

1 Like

Yes, I have the same problem.

Hi folks,

Have flagged this to the product team - they are aware but there’s no ETA I can share on when this will be fixed.