canOrderBy property

List<String> canOrderBy

possible orderings with parameter ?order=

  • application: (URLParameter), prefix with a hyphen (-application) to reverse the order
  • comparison: (URLParameter), prefix with a hyphen (-comparison) to reverse the order
  • created_at: (URLParameter), prefix with a hyphen (-created_at) to reverse the order
  • definition_class: (URLParameter), prefix with a hyphen (-definition_class) to reverse the order
  • definition_identifier: (URLParameter), prefix with a hyphen (-definition_identifier) to reverse the order
  • description: (URLParameter), prefix with a hyphen (-description) to reverse the order
  • settings: (URLParameter), prefix with a hyphen (-settings) to reverse the order
  • updated_at: (URLParameter), prefix with a hyphen (-updated_at) to reverse the order

Implementation

static List<String> get canOrderBy => [
      'application',
      'comparison',
      'created_at',
      'definition_class',
      'definition_identifier',
      'description',
      'settings',
      'updated_at'
    ];