我正在尝试创建一个基于微服务的应用程序,该应用程序使用在 Docker 中运行的两个远程 Prisma/GraphQL 模式和一个使用模式拼接自省它们的网关。
Prisma/GraphQL 模式:
// Profile Schema service - http:localhost:3000/profile
type Profile {
id: ID!
user_id: ID!
firstName: String!
...
}
type Query {
findProfileById(id: ID!): Profile
findProfileByUserID(user_id: ID!): Profile
}
// User Schema service - http:localhost:5000/user
type User {
id: ID!
profileID: ID!
email: String!
...
}
type Query {
findUserById(id: ID!): User
findUserByProfileID(profileID: ID!): Profile
}
现在在网关服务器中,我能够成功地使用 graphql-tools 进行自省和合并模式,并且我添加了扩展类型以允许两种类型之间的关系
// LinkTypeDefs
extend type Profile {
user: User
}
extend type User {
userProfile: Profile
}
我按照 Apollo GraphQL 文档使用远程模式进行模式拼接,这是我现在合并的模式的解析器
app.use('/gateway', bodyParser.json(), graphqlExpress({ schema: mergeSchemas({
schemas: [
profileSchema,
userSchema,
linkTypeDefs
],
resolvers: mergeInfo => ({
User: {
userProfile: {
fragment: `fragment UserFragment on User { id }`,
resolve(user, args, context, info) {
return delegateToSchema({
schema: profileSchema,
operation: 'query',
fieldName: 'findProfileByUserId',
args: {
user_id: user.id
},
context,
info
},
);
},
},
},
Profile: {
user: {
fragment: `fragment ProfileFragment on Profile { id }`,
resolve(profile, args, context, info) {
return delegateToSchema({
schema: authSchema,
operation: 'query',
fieldName: 'findUserByProfileId',
args: {
profileID: profile.id
},
context,
info
})
}
}
}
}),
})
}));
我遇到的问题是每次我为他们的新扩展字段查询用户或个人资料时,它总是返回 null。我已经确保我已经创建了具有现有 profileId 的 User 对象,同样具有现有 userId 的 Profile 对象。这是查询结果的示例
我已经浏览了大约一周的文档,但似乎没有任何效果。据我了解,一切都已正确插入。希望有人可以提供帮助。我感觉它与碎片有关。如果需要,我可以提供用户和配置文件对象的屏幕截图以进行更多说明。谢谢。