From 874816754d45062fb08366e6218bb89dbf470d2c Mon Sep 17 00:00:00 2001 From: James Bayly <46693720+jamesbayly@users.noreply.github.com> Date: Fri, 26 Nov 2021 09:24:34 +1300 Subject: [PATCH] Update enum docs --- docs/create/graphql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/create/graphql.md b/docs/create/graphql.md index 25bbbb55c0..47d962d203 100644 --- a/docs/create/graphql.md +++ b/docs/create/graphql.md @@ -32,7 +32,7 @@ We currently supporting flowing scalars types: - `Boolean` - `` for nested relationship entities, you might use the defined entity's name as one of the fields. Please see in [Entity Relationships](#entity-relationships). - `JSON` can alternatively store structured data, please see [JSON type](#json-type) -- `Enum` types are a special kind of scalar that is restricted to a particular set of allowed values. Please see [Graphql Enum](https://graphql.org/learn/schema/#enumeration-types) +- `` types are a special kind of enumerated scalar that is restricted to a particular set of allowed values. Please see [Graphql Enum](https://graphql.org/learn/schema/#enumeration-types) ## Indexing by non-primary-key field