Nestjs GraphQL查询未运行

时间:2019-02-11 21:17:59

标签: graphql apollo graphql-js nestjs

我有以下架构:

firebase.database().ref('gymData/exrcises').orderByChild('name').equal("barbell bench press").once('value', function(snapshot) {
  snapshot.forEach(function(childSnapshot) {
    var childKey = childSnapshot.key;//this is id 
  });
});

我有以下解析器:

type User {
  id: String!
  email: String
}

type Mutation {
  createUser(input: CreateUserDto!): CreateUserResponseDto!
}

type Query {
  user(id: Int!): User
}

input CreateUserDto {
  email: String!
  password: String!
}

type CreateUserResponseDto {
  id: String!
}

运行以下查询时:

import {Args, Mutation, Resolver} from '@nestjs/graphql';
import {UserService} from '../service/user.service';
import {CreateUserDto, CreateUserResponseDto, UserDto} from '../controller/dto/user.dto';
import {Query} from '@nestjs/common';

@Resolver('User')
export class UserResolver {

  constructor(private readonly userService: UserService) {
  }

  @Mutation()
  async createUser(@Args('input') userDto: CreateUserDto): Promise<CreateUserResponseDto> {
    const userEntity = await this.userService.createUser(userDto);

    return {
      id: userEntity.id,
    };
  }

  @Query('user')
  async getUser(@Args('id') id: number): Promise<UserDto> {
    const userEntity = await this.userService.findUserById(id);

    return {
      id: userEntity.id,
      email: userEntity.email,
    };
  }
}

我收到以下答复:

{
  user(id: 2) {
    email
  }
}

当尝试调试时,调用似乎永远无法到达解析器。

尝试运行突变时,所有操作均按预期进行。

我想念什么?

1 个答案:

答案 0 :(得分:2)

您使用了错误的Query装饰器。您是从@nestjs/common而非@nestjs/graphql导入的。

这两个名称都令人困惑,如果您使用自己的IDE为您自动修复导入,则可能会输入错误的输入。