gpt4 book ai didi

javascript - 将自定义 GraphQL 解析器和类型添加到 Prisma/Nexus 模式中

转载 作者:行者123 更新时间:2023-11-29 22:58:36 25 4
gpt4 key购买 nike

使用:TypeScriptPrismaMySQLGraphQLServerApolloClient、以这种方式构建架构:

const schema = makePrismaSchema({
// Provide all the GraphQL types we've implemented
types: [Query, Mutation, User, Post],...

然后:

  const server = new GraphQLServer({
schema,
context: { prisma }
});

如何将其与自定义解析器和与 SQL 无关的类型结合起来?

(我也想通过 GQL 调用一些 REST 端点)

最佳答案

虽然创建 nexus 是为了与 prisma 一起使用,但它实际上只是一个架构构建器。您可以轻松地使用它来创建模式,甚至无需使用 Prisma。例如:

export const User = prismaObjectType({
name: 'User',
definition(t) {
t.list.field('comments', {
type: 'Comment',
resolve(root, args, ctx) {
return getComments();
},
});
},
})

export const Comment = prismaObjectType({
name: 'Comment',
definition(t) {
t.string('body');
},
})

这里 getComments 可以返回一个评论对象数组,或者一个解析为一个的 Promise。例如,如果您正在调用其他一些 API,您通常会返回带有调用结果的 Promise。如上所示,解析器公开父值、字段的参数和上下文对象——您可以使用这些信息中的任何一个来确定如何解析特定字段。

关于javascript - 将自定义 GraphQL 解析器和类型添加到 Prisma/Nexus 模式中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56099579/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com