canQuery property

List<String> canQuery

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

  • address: (URLParameter), query on a specific address, example: ?whereaddress=string
  • blocked: (URLParameter), query on a specific blocked, example: ?whereblocked=true
  • created_at: (URLParameter), query on a specific created_at, example: ?wherecreated_at=2000-01-01T12:00:00Z
  • location: (URLParameter), query on a specific location, example: ?wherelocation=string
  • primary: (URLParameter), query on a specific primary, example: ?whereprimary=true
  • updated_at: (URLParameter), query on a specific updated_at, example: ?whereupdated_at=2000-01-01T12:00:00Z

Implementation

static List<String> get canQuery =>
    ['address', 'blocked', 'created_at', 'location', 'primary', 'updated_at'];