-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Empty values (null, undefined) in 'contains' method #18
Comments
Hi. Example 1:
Example 2:
|
This solution solve my problem, thanks! But you didn't think about encapsulation of this solution in your lib? |
Not sure if the silent skip is better. Need to think what to do with it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I use odata-builder for building large filter from table columns.
Each value can be empty string or undefined value and i want to skip 'contains' operator if
value === undefined
.For example:
I need to skip
contains(age)
operator becauseage === undefined
, how to solve this problem?The text was updated successfully, but these errors were encountered: