## 变更(Mutations)
大多数关于 `GraphQL` 的讨论都集中在数据获取上,但任何完整的数据平台也需要一种修改服务器端数据的方法。 在 REST 中,任何请求最终都可能对服务器造成副作用,但最佳实践建议我们不应修改 `GET` 请求中的数据。 `GraphQL` 是类似的——从技术上讲,任何查询都可以实现来导致数据写入。 但是,与 `REST` 一样,建议遵守约定,即任何导致写入的操作都应通过突变显式发送([在这里阅读更多](http://graphql.cn/learn/queries/#mutations)阅读更多内容)。
`Apollo` 官方文档使用 `upvotePost()` 变更示例。 这个变更实现了一种增加帖子投票属性值的方法。 为了在 Nest 中创建等效的突变,我们将使用 `@Mutation() `装饰器。
### **代码优先**
让我们使用 在上一节中AuthorResolver另一种方法(参见[解析图](https://docs.nestjs.com/graphql/resolvers))。
```typescript
@Resolver(of => Author)
export class AuthorResolver {
constructor(
private readonly authorsService: AuthorsService,
private readonly postsService: PostsService,
) {}
@Query(returns => Author, { name: 'author' })
async getAuthor(@Args({ name: 'id', type: () => Int }) id: number) {
return await this.authorsService.findOneById(id);
}
@Mutation(returns => Post)
async upvotePost(@Args({ name: 'postId', type: () => Int }) postId: number) {
return await this.postsService.upvoteById({ id: postId });
}
@ResolveProperty('posts')
async getPosts(@Parent() author) {
const { id } = author;
return await this.postsService.findAll({ authorId: id });
}
}
```
> 所有装饰器(例如,`@Resolver`、`@ResolveField`、`@Args` 等)都从 `@nestjs/graphql`包中导出。
`upvotePost()` 取 `postId`(`Int`)作为输入参数,并返回更新的 `Post` 实体。出于与解析器部分相同的原因,我们必须明确设置预期类型。
如果突变需要将对象作为参数,我们可以创建一个输入类型。 输入类型是一种特殊的对象类型,可以作为参数传入(在[此处](https://graphql.org/learn/schema/#input-types)阅读更多内容)。 要声明输入类型,请使用 `@InputType()` 装饰器。
```typescript
@InputType()
export class UpvotePostInput {
@Field() postId: number;
}
```
> `@InputType()` 和 `@Field()` 需要从`type-graphql` 包导入。
>`@InputType()` 装饰器将选项对象作为参数,例如,您可以指定输入类型的描述。 请注意,由于 `TypeScript `的元数据反射系统限制,您必须使用 `@Field` 装饰器手动指示类型,或使用 CLI 插件。
然后我们可以在解析器类中使用这种类型:
```typescript
@Mutation(returns => Post)
async upvotePost(
@Args('upvotePostData') upvotePostData: UpvotePostInput,
) {}
```
#### ** 架构优先 **
让我们扩展我们在上一节中AuthorResolver的用法(见[解析图](https://docs.nestjs.com/graphql/resolvers))。
```typescript
@Resolver('Author')
export class AuthorResolver {
constructor(
private readonly authorsService: AuthorsService,
private readonly postsService: PostsService,
) {}
@Query('author')
async getAuthor(@Args('id') id: number) {
return await this.authorsService.findOneById(id);
}
@Mutation()
async upvotePost(@Args('postId') postId: number) {
return await this.postsService.upvoteById({ id: postId });
}
@ResolveProperty('posts')
async getPosts(@Parent() { id }) {
return await this.postsService.findAll({ authorId: id });
}
}
```
请注意,我们假设业务逻辑已移至 `PostsService`(分别查询 `post` 和 incrementing `votes` 属性)。
### 类型定义
最后一步是将我们的变更添加到现有的类型定义中。
```typescript
type Author {
id: Int!
firstName: String
lastName: String
posts: [Post]
}
type Post {
id: Int!
title: String
votes: Int
}
type Query {
author(id: Int!): Author
}
type Mutation {
upvotePost(postId: Int!): Post
}
```
该 `upvotePost(postId: Int!): Post` 变更现在可以作为我们应用程序的 GraphQL API 的一部分调用。
- 介绍
- 概述
- 第一步
- 控制器
- 提供者
- 模块
- 中间件
- 异常过滤器
- 管道
- 守卫
- 拦截器
- 自定义装饰器
- 基础知识
- 自定义提供者
- 异步提供者
- 动态模块
- 注入作用域
- 循环依赖
- 模块参考
- 懒加载模块
- 应用上下文
- 生命周期事件
- 跨平台
- 测试
- 技术
- 数据库
- Mongo
- 配置
- 验证
- 缓存
- 序列化
- 版本控制
- 定时任务
- 队列
- 日志
- Cookies
- 事件
- 压缩
- 文件上传
- 流式处理文件
- HTTP模块
- Session(会话)
- MVC
- 性能(Fastify)
- 服务器端事件发送
- 安全
- 认证(Authentication)
- 授权(Authorization)
- 加密和散列
- Helmet
- CORS(跨域请求)
- CSRF保护
- 限速
- GraphQL
- 快速开始
- 解析器(resolvers)
- 变更(Mutations)
- 订阅(Subscriptions)
- 标量(Scalars)
- 指令(directives)
- 接口(Interfaces)
- 联合类型
- 枚举(Enums)
- 字段中间件
- 映射类型
- 插件
- 复杂性
- 扩展
- CLI插件
- 生成SDL
- 其他功能
- 联合服务
- 迁移指南
- Websocket
- 网关
- 异常过滤器
- 管道
- 守卫
- 拦截器
- 适配器
- 微服务
- 概述
- Redis
- MQTT
- NATS
- RabbitMQ
- Kafka
- gRPC
- 自定义传输器
- 异常过滤器
- 管道
- 守卫
- 拦截器
- 独立应用
- Cli
- 概述
- 工作空间
- 库
- 用法
- 脚本
- Openapi
- 介绍
- 类型和参数
- 操作
- 安全
- 映射类型
- 装饰器
- CLI插件
- 其他特性
- 迁移指南
- 秘籍
- CRUD 生成器
- 热重载
- MikroORM
- TypeORM
- Mongoose
- 序列化
- 路由模块
- Swagger
- 健康检查
- CQRS
- 文档
- Prisma
- 静态服务
- Nest Commander
- 问答
- Serverless
- HTTP 适配器
- 全局路由前缀
- 混合应用
- HTTPS 和多服务器
- 请求生命周期
- 常见错误
- 实例
- 迁移指南
- 发现
- 谁在使用Nest?