From 3b5c72f3fd263987ab299fcd80f80df62cd5261a Mon Sep 17 00:00:00 2001 From: Roman Schmid Date: Thu, 3 Feb 2022 19:22:38 +0100 Subject: [PATCH] V4: Fix documentation for Enum declaration Syntax (#10223) --- .../07_enums_unions_and_interfaces.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 6f1045f8d..d2fa52c9b 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 ```