node.js - 使用 typegoose 时出现 GraphQLError : Type Query must define one or more fields.

标签 node.js mongoose nestjs typegoose

我尝试在我的项目中实现 typegoose。我正在创建一个 Nestjs graphql 服务器并使用 mongoose 将文档推送到我的数据库中。

我尝试使用 typegoose 来简化实现新功能的方法,但我遇到了用 typegoose 转换我的 Mongoose “架构”的问题。

让我们看看我的代码

ad.ts

import { buildSchema, getModelForClass, prop } from '@typegoose/typegoose';

export class Ad{
  @prop({ required: true })
  title: String;

  @prop({ required: true })
  description: String;
}

export const AdModel = getModelForClass(Ad);
export const AdSchema = buildSchema(Ad);

ad.controller.ts

import { Body, Controller, Get, Post } from '@nestjs/common';
import { AdsService } from './ads.service';
import { Ad } from './models/ad';

@Controller('ads')
export class AdsController {
  constructor(private readonly adService: AdsService) {}

  @Get()
  async getAds(): Promise<Ad[] | null> {
    return await this.adService.findAll();
  }

  @Post()
  async create(@Body() adDto: Partial<Ad>): Promise<Ad> {
    return await this.adService.create(adDto);
  }
}

ad.service.ts

import { Injectable } from '@nestjs/common';
import { InjectModel } from '@nestjs/mongoose';
import { Ad } from './models/ad';
import { ReturnModelType } from '@typegoose/typegoose';

@Injectable()
export class AdsService {

  constructor(
    @InjectModel(Ad.name)
    private readonly adModel: ReturnModelType<typeof Ad>) {}

  async create(adDto: Partial<Ad>): Promise <Ad> {
    const createdAd = new this.adModel(adDto);
    return await createdAd.save();
  }
  async findAll(): Promise <Ad[]> {
    return await this.adModel.find().exec();
  }

}

ad.module.ts

import { Module } from '@nestjs/common';
import { AdsService } from './ads.service';
import { MongooseModule } from '@nestjs/mongoose';
import { Ad, AdSchema } from './models/ad';
import { AdsController } from './ads.controller';

@Module({
  imports:[MongooseModule.forFeature([{ name: Ad.name, schema: AdSchema }])],
  controllers: [AdsController],
  providers: [AdsService],
})
export class AdsModule {}

但我收到此错误消息:

错误堆栈跟踪

GraphQLError: Type Query must define one or more fields.
      at SchemaValidationContext.reportError (/home/olivier/www/other/green/back-end/graphql-server/node_modules/graphql/type/validate.js:90:19)
      at validateFields (/home/olivier/www/other/green/back-end/graphql-server/node_modules/graphql/type/validate.js:251:13)
      at validateTypes (/home/olivier/www/other/green/back-end/graphql-server/node_modules/graphql/type/validate.js:226:7)
      at validateSchema (/home/olivier/www/other/green/back-end/graphql-server/node_modules/graphql/type/validate.js:54:3)
      at graphqlImpl (/home/olivier/www/other/green/back-end/graphql-server/node_modules/graphql/graphql.js:79:62)
      at /home/olivier/www/other/green/back-end/graphql-server/node_modules/graphql/graphql.js:28:59
      at new Promise (<anonymous>)
      at Object.graphql (/home/olivier/www/other/green/back-end/graphql-server/node_modules/graphql/graphql.js:26:10)
      at Function.<anonymous> (/home/olivier/www/other/green/back-end/graphql-server/node_modules/type-graphql/dist/schema/schema-generator.js:18:52)
      at Generator.next (<anonymous>)
      at /home/olivier/www/other/green/back-end/graphql-server/node_modules/tslib/tslib.js:110:75
      at new Promise (<anonymous>)
      at Object.__awaiter (/home/olivier/www/other/green/back-end/graphql-server/node_modules/tslib/tslib.js:106:16)
      at Function.generateFromMetadata (/home/olivier/www/other/green/back-end/graphql-server/node_modules/type-graphql/dist/schema/schema-generator.js:15:24)
      at /home/olivier/www/other/green/back-end/graphql-server/node_modules/type-graphql/dist/utils/buildSchema.js:11:65
      at Generator.next (<anonymous>) {
    message: 'Type Query must define one or more fields.'
  }
]
(node:1828) UnhandledPromiseRejectionWarning: Error: Generating schema error
    at Function.<anonymous> (/home/olivier/www/other/green/back-end/graphql-server/node_modules/type-graphql/dist/schema/schema-generator.js:20:27)
    at Generator.next (<anonymous>)
    at fulfilled (/home/olivier/www/other/green/back-end/graphql-server/node_modules/tslib/tslib.js:107:62)
    at processTicksAndRejections (internal/process/task_queues.js:93:5)
(node:1828) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:1828) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

最佳答案

我猜这与 Typegoose 无关。您是否定义了任何 Graphql 类型或查询?如果您将 GraphQLModule 添加到应用的模块,则需要有一个正确的 .graphql 文件,该文件至少应具有查询类型。

关于node.js - 使用 typegoose 时出现 GraphQLError : Type Query must define one or more fields.,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58624020/

相关文章:

node.js - 查找调用中未显示 TypeORM 外键

javascript - module.require(...).* 是否返回 module.exports.* 的副本或它的引用?

node.js - npm install 命令作为 root 用户工作正常,但如果命令作为 jenkins 用户执行则抛出错误

javascript - 如何在redis中使用单个键插入多个json数据

javascript - 保存对象的两种方式,有什么区别?

node.js - 使用 Mongoose 创建动态模式

swagger - 使用 swagger 4.x 包生成 swagger 2.0 yaml

javascript - 如何为 NestJS/TypeORM 覆盖提供者

node.js - 对于路径 "586d62878fc14d30e0ac5379"处的值 "_id",转换为 ObjectId 失败

node.js - 使用 Mongoose 更新子文档