canOrderBy property

List<String> canOrderBy

possible orderings with parameter ?order=

  • created_at: (URLParameter), prefix with a hyphen (-created_at) to reverse the order
  • item_count: (URLParameter), prefix with a hyphen (-item_count) to reverse the order
  • name: (URLParameter), prefix with a hyphen (-name) to reverse the order
  • note_count: (URLParameter), prefix with a hyphen (-note_count) to reverse the order
  • team_count: (URLParameter), prefix with a hyphen (-team_count) to reverse the order
  • updated_at: (URLParameter), prefix with a hyphen (-updated_at) to reverse the order

Implementation

static List<String> get canOrderBy => [
      'created_at',
      'item_count',
      'name',
      'note_count',
      'team_count',
      'updated_at'
    ];