GraphQL 模式中的空列表 - 应该为 null 还是 []?

Empty list in GrapQL schema- should be null or []?

我有 Post 类型,tags 字段是字符串数组,但有些帖子没有标签。是否有任何约定如何处理 0 个项目(在我的示例中为标签)- 我应该从后端 return null 查询还是空数组 []?如果这是开发人员的偏好并且没有标准,那么在所有 graphql 项目中更常用的是什么?

最好使用空列表([]): https://github.com/nuwave/lighthouse/issues/1980#issuecomment-970189037