在深入研究代码之前,这是我的问题的高级解释:
在我的GraphQL
模式中,我有两种根类型:开发人员和项目。我试图找到属于给定项目的所有开发人员。查询可能看起来像这样:
{
project(id:2) {
title
developers {
firstName
lastName
}
}
}
当前,我为开发人员获得了null
的值。
虚拟数据
const developers = [
{
id: '1',
firstName: 'Brent',
lastName: 'Journeyman',
projectIds: ['1', '2']
},
{
id: '2',
firstName: 'Laura',
lastName: 'Peterson',
projectIds: ['2']
}
]
const projects = [
{
id: '1',
title: 'Experimental Drug Bonanza',
company: 'Pfizer',
duration: 20,
},
{
id: '2',
title: 'Terrible Coffee Holiday Sale',
company: 'Starbucks',
duration: 45,
}
]
因此,布伦特(Brent)参与了两个项目。劳拉(Laura)参与了第二个项目。我的问题是resolve
中的ProjectType
函数。我已经尝试了很多查询,但是似乎都没有用。
ProjectType
const ProjectType = new GraphQLObjectType({
name: 'Project',
fields: () => ({
id: { type: GraphQLID },
title: { type: GraphQLString },
company: { type: GraphQLString },
duration: { type: GraphQLInt },
developers: {
type: GraphQLList(DeveloperType),
resolve(parent, args) {
///////////////////////
// HERE IS THE ISSUE //
//////////////////////
return _.find(developers, { id: ? });
}
}
})
})
DeveloperType
const DeveloperType = new GraphQLObjectType({
name: 'Developer',
fields: () => ({
id: { type: GraphQLID },
firstName: { type: GraphQLString },
lastName: { type: GraphQLString }
})
})
答案 0 :(得分:1)
因此,您需要将所有拥有当前项目id
的开发人员退回其.projectIds
中,对吧?
首先,_.find
无济于事,因为它返回第一个匹配的元素,并且您需要与开发人员一起获得数组(因为字段的类型为GraphQLList
)。
那
resolve(parent, args) {
return developers.filter(
({projectIds}) => projectIds.indexOf(parent.id) !== -1
);
}