如何在突变中上传文件?

时间:2019-07-15 13:29:58

标签: graphql nestjs

我想将图像存储在服务器中,使用逻辑REST很容易,但是我必须使用GraphQL。

问题:我使用的是NestJS框架,我不知道如何将文件信息放入突变中,因为它不是JSON对象。

使用标量类型或文件参数...我不知道...

@Mutation('createArticle')
  async createArticle(@Args() args, @Info() info): Promise<Article> {
    //get the file and store in server
    return await this.prisma.mutation.createArticle(args, info);
  }

0 个答案:

没有答案