繁体   English   中英

使用 Prisma 和 Apollo 调用多个 GraphQL 突变的正确方法是什么

[英]What is the correct way to call multiple GraphQL mutations with Prisma and Apollo

我有以下数据库模型

type GlobalUser {
  email: String 
  createdAt: DateTime! 
  updatedAt: DateTime! 
}

type Client {
  global_user: GlobalUser! 
  createdAt: DateTime! 
  updatedAt: DateTime! 
}

每次创建 GlobalUser 时,我都想在 client 表中创建一个 Client。 如果我选择使用 Apollo 从应用程序的 Angular 客户端执行此操作,这可能是我使用 Promise 一个接一个调用一个更改的方法。

document = gql`
  mutation createGlobalUser(
    $email: String!, $password: String!
  ) {
    createGlobalUser(
      email: $email, password: $password,
    ) {
      email
    }
  }
`;

createGlobalUserService.mutate({

      email: email

}).toPromise().then((res) => {

    createClientService.mutate({

        global_user: res.data.id

 }).catch(err => {
     console.log(err);
 });

我没有找到从服务器端的 Prisma 解析器中做到这一点的方法

const Mutation = {
 async createGlobalUser(root, args, context) {
   const user = await context.prisma.createGlobalUser({
       ...args
   });
   return {
     id
     email
   }
 }

有没有一种方法可以在 Angular 中使用 Apollo 从客户端组合和执行多个 Mutation? 还是在服务器端做更好?

如果您将客户端添加为与数据模型的关系,如下所示:


type GlobalUser {
  email: String 
  createdAt: DateTime! 
  updatedAt: DateTime! 
  client: Client! @relation(name: "UserClient")
}

type Client {
  global_user: GlobalUser! @relation(name: "UserClient")
  createdAt: DateTime! 
  updatedAt: DateTime! 
}

您可以在来自前端的一个请求中使用 Prisma 客户端创建客户端。 例如:

document = gql`
  mutation createGlobalUser(
    $email: String!, $password: String!
  ) {
    createGlobalUser(
      data: {
        email: $email
        password: $password
        client: {
           create: { ... }
        }
    ) {
      email
    }
  }
`;

有关更多信息,请查看: https : //www.prisma.io/docs/datamodel-and-migrations/datamodel-POSTGRES-knum/#the-@relation-directive

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM