关于使用GQL查询articles时 使用不同的frist参数返回的article.tags 数量不一致

## query
query GetArticles ($first: Int, $after: String, $before: String, $last: Int, $query: String, $sortKey: ArticleSortKeys, $reverse: Boolean) {
	articles(first: $first, after: $after, before: $before, last: $last, query: $query, sortKey: $sortKey, reverse: $reverse) {
			nodes {
				author {
					name
				}
				blog {
					id
					handle
				}
				createdAt
				image {
					id
					altText
					url
				}
				isPublished
				publishedAt
				summary
				tags
				templateSuffix
				updatedAt
				id
				title
				handle
			}
		pageInfo {
			... PageInfoFields
		}
	}
}
fragment PageInfoFields on PageInfo {
	hasNextPage
	hasPreviousPage
	endCursor
	startCursor
}

## variables
{
"first": 10,
"sortKey": "UPDATED_AT",
"reverse": true
}

bug: 当first参数时10时 返回的tags要么只有一个 或者没有。 只有单参数时1时 才能正常的返回tags的所有数量

期望: 能够当first参数 > 10 时可以正常返回tags数量

Could you please clarify message or write with explanation so that I can understand.

Thanks