模式拼接两个远程 Prisma/GraphQL 模式
Schema Stitching two remote Prisma/GraphQL schemas
我正在尝试创建一个基于微服务的应用程序,它使用 运行 在 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
})
}
}
}
}),
})
}));
我遇到的问题是,每次我查询用户或配置文件的新扩展字段时,它总是 returns 为空。我已确保我已经创建了具有现有 profileId 的用户对象,同样使用具有现有 userId 的 Profile 对象。这是查询结果的示例
我已经查看文档大约一个星期了,但似乎没有任何效果。据我了解,一切都已正确插入。希望有人能提供帮助。我有一种感觉,它与碎片有关。如果需要,我可以提供用户和配置文件对象的屏幕截图以进行更多说明。谢谢。
我最终通过将 delegateToSchema() 更改为 info.mergeInfo.delegate() 解决了这个问题。这似乎可以解决问题。
我还没有尝试过新更新的 info.mergeInfo.delegateToSchema。如果更新的版本有效,我会更新这个 post 但现在这对我有用。
希望这对以后的人有所帮助!
我正在尝试创建一个基于微服务的应用程序,它使用 运行 在 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
})
}
}
}
}),
})
}));
我遇到的问题是,每次我查询用户或配置文件的新扩展字段时,它总是 returns 为空。我已确保我已经创建了具有现有 profileId 的用户对象,同样使用具有现有 userId 的 Profile 对象。这是查询结果的示例
我已经查看文档大约一个星期了,但似乎没有任何效果。据我了解,一切都已正确插入。希望有人能提供帮助。我有一种感觉,它与碎片有关。如果需要,我可以提供用户和配置文件对象的屏幕截图以进行更多说明。谢谢。
我最终通过将 delegateToSchema() 更改为 info.mergeInfo.delegate() 解决了这个问题。这似乎可以解决问题。
我还没有尝试过新更新的 info.mergeInfo.delegateToSchema。如果更新的版本有效,我会更新这个 post 但现在这对我有用。
希望这对以后的人有所帮助!