canQuery property

List<String> canQuery

possible queries using parameters like ?wherekey=value or ?wheregt|lt=value

  • created_at: (URLParameter), query on a specific created_at, example: ?wherecreated_at=2000-01-01T12:00:00Z
  • person_to_keep_id: (URLParameter), query on a specific person_to_keep_id, example: ?whereperson_to_keep_id=primary_key
  • person_to_remove_id: (URLParameter), query on a specific person_to_remove_id, example: ?whereperson_to_remove_id=primary_key

Implementation

static List<String> get canQuery =>
    ['created_at', 'person_to_keep_id', 'person_to_remove_id'];