values constant

List<String> const values

The standard edge types this SDK names as constants.

This is the shared vocabulary, not the set of accepted values: the server accepts any string matching ^[A-Z][A-Z0-9_]{0,49}$, so an application-defined type is legal even though it is absent here. Use isValid to validate; use this list only to enumerate or present the standard types.

Implementation

static const List<String> values = [
  belongsTo,
  createdFrom,
  referenced,
  dependsOn,
  derivedFrom,
  producedBy,
  migratedFrom,
  contains,
  supersedes,
  supports,
];