V4: Fix documentation for Enum declaration Syntax (#10223)

This commit is contained in:
Roman Schmid 2022-02-03 19:22:38 +01:00 committed by GitHub
parent 6d90eec0c8
commit 3b5c72f3fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -31,8 +31,9 @@ It's very easy to add enum types to your schema. Just use the `enums` section of
```yaml
enums:
SortDirection:
DESC: Descending order
ASC: Ascending order
values:
DESC: Descending order
ASC: Ascending order
```