filtering based on date not working #690
Answered
by
jan-tennert
ldobransky
asked this question in
Q&A
-
can somebody help me why filtering based on date not working in this case? I am sure that dates are not null, but response is without filtering. // Order by date descending |
Beta Was this translation helpful? Give feedback.
Answered by
jan-tennert
Aug 14, 2024
Replies: 1 comment
-
You can't directly apply multiple filters to one column, you have to use and {
if(dateTo != null) {
lte("date", dateTo)
}
if(dateFrom != null) {
gte("date", dateFrom)
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ldobransky
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can't directly apply multiple filters to one column, you have to use
and
: