canQuery property

List<String> canQuery

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

  • creator_name: (URLParameter), query on a specific creator_name, example: ?wherecreator_name=string
  • id: (URLParameter), query on a specific id, example: ?whereid=primary_key
  • themes: (URLParameter), query on a specific themes, example: ?wherethemes=string
  • title: (URLParameter), query on a specific title, example: ?wheretitle=string

Implementation

static List<String> get canQuery => ['creator_name', 'id', 'themes', 'title'];