Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
事实证明,graphql-go的帮助文档对初学者不友好。我只是想知道 .NewList() 在下面的代码中做了什么:Type: graphql.NewList(types.Workouts)
Type: graphql.NewList(types.Workouts)
这意味着array类型
array
列表的工作方式类似:我们可以使用类型修饰符将类型标记为列表,这表明该字段将返回array该类型的一个。在模式语言中,这通过将类型括在方括号中来表示,[并且].
[
]
// js languages: { type: new GraphQLNonNull(new GraphQLList(GraphQLString)) } // schema language languages: [String]! // returns empty array or array of strings
文档