Vin*_*tos 3 graphql nestjs sequelize-typescript
我正在使用 Nest.js 和 Sequelize-Typescript 构建 GraphQL API。
当我调用删除和更新突变时,我得到了一个空对象,但操作已完成。我需要输入 {nullable: true} 因为我收到一条错误消息Cannot return null for non-nullable field。我该如何解决它?我需要端点返回更新的对象以在前面显示信息
书.dto.ts
import { ObjectType, Field, Int, ID } from 'type-graphql';
@ObjectType()
export class BookType {
@Field(() => ID, {nullable: true})
readonly id: number;
@Field({nullable: true})
readonly title: string;
@Field({nullable: true})
readonly author: string;
}
Run Code Online (Sandbox Code Playgroud)
书籍解析器.ts
import {Args, Mutation, Query, Resolver} from '@nestjs/graphql';
import { Book } from './model/book.entity';
import { BookType } from './dto/book.dto';
import { CreateBookInput } from './input/createBook.input';
import { UpdateBookInput } from './input/updateBook.input';
import { BookService } from './book.service';
@Resolver('Book')
export class BookResolver {
constructor(private readonly bookService: BookService) {}
@Query(() => [BookType])
async getAll(): Promise<BookType[]> {
return await this.bookService.findAll();
}
@Query(() => BookType)
async getOne(@Args('id') id: number) {
return await this.bookService.find(id);
}
@Mutation(() => BookType)
async createItem(@Args('input') input: CreateBookInput): Promise<Book> {
const book = new Book();
book.author = input.author;
book.title = input.title;
return await this.bookService.create(book);
}
@Mutation(() => BookType)
async updateItem(
@Args('input') input: UpdateBookInput): Promise<[number, Book[]]> {
return await this.bookService.update(input);
}
@Mutation(() => BookType)
async deleteItem(@Args('id') id: number) {
return await this.bookService.delete(id);
}
@Query(() => String)
async hello() {
return 'hello';
}
}
Run Code Online (Sandbox Code Playgroud)
图书服务.ts
import {Inject, Injectable} from '@nestjs/common';
import {InjectRepository} from '@nestjs/typeorm';
import {Book} from './model/book.entity';
import {DeleteResult, InsertResult, Repository, UpdateResult} from 'typeorm';
@Injectable()
export class BookService {
constructor(@Inject('BOOKS_REPOSITORY') private readonly bookRepository: typeof Book) {}
findAll(): Promise<Book[]> {
return this.bookRepository.findAll<Book>();
}
find(id): Promise<Book> {
return this.bookRepository.findOne({where: {id}});
}
create(data): Promise<Book> {
return data.save();
}
update(data): Promise<[number, Book[]]> {
return this.bookRepository.update<Book>(data, { where: {id: data.id} });
}
delete(id): Promise<number> {
return this.bookRepository.destroy({where: {id}});
}
}
Run Code Online (Sandbox Code Playgroud)
小智 11
您可以在解析器查询中设置选项参数来修复它
@Query(() => BookType, { nullable: true })
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
6103 次 |
| 最近记录: |