如何从GraphQL中的数组返回一组标量值?其他所有内容都可以使用密钥进行映射,但不确定如何解决以下问题:all: [23,45,7,4]
在其他地方检索数据:
axios.get(`${mostStarredRepoUrl}/stats/participation`)
.then((p) => {
console.log(p.data) // {all: [23,45,7,4,..etc..], owner: [0,0,0,..etc..]}
return p.data;
GraphQL自定义对象文件
module.exports = new GraphQLObjectType({
name: 'GithubParticipations',
fields: () => ({
all: { type: new GraphQLList(GraphQLFloat) },
owner: { type: new GraphQLList(GraphQLFloat) }
}),
});
在/ graphiql中,我在activity: null
的结果中得到query { activity { all } }
。然而,在文档侧标签中,当我浏览自定义类型时,我得到all: [Float]