GraphQL Blog Tag Not always Included In Response

GraphQL Blog Tag Not always Included In Response

kodyv_san
Visitor
1 0 0

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, but that seems like a janky workaround for a Shopify Admin API Bug.

Replies 0 (0)