Zeitvergleich braucht { . ilike gibt es nicht in Rose:
like_operator => 'like', # only applicable to Postgres, defaulted to undef, i.e. render_as_table() uses 'ilike' for Postgres by default
query => [
'customer.name' => 'John Doe',
- 'department.description' => [ ilike => '%Sales%' ],
- 'orddate' => [ lt => DateTime->today ],
+ 'department.description' => [ like => '%Sales%' ],
+ 'orddate' => { lt => DateTime->today },
]
+
Unfortunately, if you specify them in your form as these strings, the form
parser will convert them into nested structures like this: