ENUM

Uniqueness

The unique setting of a field.

link GraphQL Schema definition

  • enum Uniqueness {
  • # The value of the field is not required to be unique.
  • NONE
  • # The value of the field must be unique, but only in the context of other values
  • # entered into this field specifically.
  • LOCAL
  • # The field must be unique amongst all other fields of the same type.
  • GLOBAL
  • }