Enum Type

type

enum

Enums - 图1

Enums - 图2

Enums - 图3

An enumerated type is a data type consisting of an ordered list of values.

An enumerated type can be declared in a schema declaration using the following syntax:

  1. scalar type Color extending enum<Red, Green, Blue>;

Enum values can then be accessed directly:

  1. db>
  1. select Color.Red is Color;
  1. {true}

Casting can be used to obtain an enum value in an expression:

  1. db>
  1. select 'Red' is Color;
  1. {false}
  1. db>
  1. select <Color>'Red' is Color;
  1. {true}
  1. db>
  1. select <Color>'Red' = Color.Red;
  1. {true}

The enum values in EdgeQL are string-like in the fact that they can contain any characters that the strings can. This is different from some other languages where enum values are identifier-like and thus cannot contain some characters. For example, when working with GraphQL enum values that contain characters that aren’t allowed in identifiers cannot be properly reflected. To address this, consider using only identifier-like enum values in cases where such compatibility is needed.