## 枚举
枚举类型是一种特殊的标量,它的值仅限于一组特定的允许值(详情请参阅[这里](https://graphql.org/learn/schema/#enumeration-types))。这允许你:
- 验证此类型的任何参数都是允许值之一
- 通过类型系统传递一个字段,这个字段始终是一组有限的值之一
### 代码优先
当使用代码优先方式时,你只需通过创建一个 TypeScript 枚举变量来定义一个 GraphQL 枚举类型。
```typescript
export enum AllowedColor {
RED,
GREEN,
BLUE,
}
```
在这里,我们使用 `@nestjs/graphql` 包里的 `registerEnumType` 函数来注册 `AllowedColor` 枚举。
```typescript
registerEnumType(AllowedColor, {
name: 'AllowedColor',
});
```
现在你可以在我们的类型中引用 `AllowedColor`:
```typescript
@Field(type => AllowedColor)
favoriteColor: AllowedColor;
```
最终的结果是在 SDL 中生成以下部分的 GraphQL schema:
```graphql
enum AllowedColor {
RED
GREEN
BLUE
}
```
要为枚举提供描述,可以将`description` 属性传递给 `registerEnumType()` 函数。
```typescript
registerEnumType(AllowedColor, {
name: 'AllowedColor',
description: 'The supported colors.',
});
```
要为枚举值提供描述,或将值标记为已弃用,可以传递 `valuesMap` 属性,如下所示:
```typescript
registerEnumType(AllowedColor, {
name: 'AllowedColor',
description: 'The supported colors.',
valuesMap: {
RED: {
description: 'The default color.',
},
BLUE: {
deprecationReason: 'Too blue.',
},
},
});
```
最终在 SDL 中生成的 GraphQL schema 如下所示:
```graphql
"""
The supported colors.
"""
enum AllowedColor {
"""
The default color.
"""
RED
GREEN
BLUE @deprecated(reason: "Too blue.")
}
```
### 模式优先
在模式优先方式中定义一个枚举器,只需在 SDL 中创建一个 GraphQL 枚举类型。
```graphql
enum AllowedColor {
RED
GREEN
BLUE
}
```
然后,你可以使用类型生成功能(如[快速开始](https://docs.nestjs.com/graphql/quick-start)章节所示)生成相应的 TypeScript 定义。
```typescript
export enum AllowedColor {
RED
GREEN
BLUE
}
```
有时,后端会在内部强制使用与公共 API 不同的枚举值。在这个例子中,API 包含 `RED`,然而在解析器中我们可能会使用 `#f00` 来替代(详情请参阅[此处](https://www.apollographql.com/docs/apollo-server/schema/custom-scalars/#internal-values))。为此,需要给 `AllowedColor` 枚举声明一个解析器对象:
```typescript
export const allowedColorResolver: Record<keyof typeof AllowedColor, any> = {
RED: '#f00',
};
```
> 所有装饰器都是从 `@nestjs/graphql` 包里导出。
然后,将此解析器对象与 `GraphQLModule#forRoot()` 方法的 `resolvers` 属性一起使用,如下所示:
```typescript
GraphQLModule.forRoot({
resolvers: {
AllowedColor: allowedColorResolver,
},
});
```
- 介绍
- 概述
- 第一步
- 控制器
- 提供者
- 模块
- 中间件
- 异常过滤器
- 管道
- 守卫
- 拦截器
- 自定义装饰器
- 基础知识
- 自定义提供者
- 异步提供者
- 动态模块
- 注入作用域
- 循环依赖
- 模块参考
- 懒加载模块
- 应用上下文
- 生命周期事件
- 跨平台
- 测试
- 技术
- 数据库
- 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?