Dima
07/05/2023, 12:55 PMsort_by
+ eval_
feature, but for some reason it throw “Only upto 3 sort fields are allowed” error 🤔 My sort_by string looks like
_eval(field:=[`foo`,`bar`,`foo bar`]):desc,_text_match:desc,other_field:desc'`
Could it be because of the space?Kishore Nallan
07/05/2023, 12:56 PMKishore Nallan
07/05/2023, 12:57 PMKishore Nallan
07/05/2023, 12:57 PMother_field:desc'
Dima
07/05/2023, 1:02 PM_eval(field:=[`foo`]):desc,_text_match:desc,other_field:desc
_eval(field:=[`foo:bar`]):desc,_text_match:desc,other_field:desc
_eval(field:=[`foo bar`]):desc,_text_match:desc,other_field:desc
Work fine, but
_eval(field:=[`foo`, `bar`]):desc,_text_match:desc,other_field:desc
_eval(field:=[foo, bar]):desc,_text_match:desc,other_field:desc
don’tKishore Nallan
07/05/2023, 1:04 PMDima
07/05/2023, 1:04 PMDima
07/05/2023, 1:05 PMsort_by
by commaKishore Nallan
07/05/2023, 1:05 PMKishore Nallan
07/05/2023, 1:06 PM`foo`, `bar`
This part?Dima
07/05/2023, 1:07 PMDima
07/05/2023, 1:25 PMDima
07/05/2023, 1:26 PMeval_
contains comma it’s acting weirdlyKishore Nallan
07/05/2023, 1:27 PMDima
08/25/2023, 11:20 AM