diff --git a/docs/en/02_Developer_Guides/19_GraphQL/03_working_with_generic_types/07_enums_unions_and_interfaces.md b/docs/en/02_Developer_Guides/19_GraphQL/03_working_with_generic_types/07_enums_unions_and_interfaces.md index 6f1045f8d93..d2fa52c9bfb 100644 --- a/docs/en/02_Developer_Guides/19_GraphQL/03_working_with_generic_types/07_enums_unions_and_interfaces.md +++ b/docs/en/02_Developer_Guides/19_GraphQL/03_working_with_generic_types/07_enums_unions_and_interfaces.md @@ -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 ```