You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would expect this to be translated to (CodePropriete = MH) AND (NbPiedsParcelle > 2 OR NbRangsParcelle > 2) AND Cepage = Chardonnnay but my tests suggests it is translated to ((((CodePropriete = MH) AND NbPiedsParcelle > 2) OR NbRangsParcelle > 2) AND Cepage = Chardonnnay).
Am I doing something wrong ?
The text was updated successfully, but these errors were encountered:
This library does not support (yet) nested/grouped expressions and implementing this is not trivial. Unfortunatelly, I'm lacking time to maintain this lib for now, so it won't be implemented anytime soon.
I am building a query with several AND and OR and I want to use brackets to group some expressions. My expression is the following :
eq('CodePropriete', 'MH')+AND+(gt('NbPiedsParcelle', '2')+OR+gt('NbRangsParcelle', '2'))+AND+eq('Cepage', 'Chardonnay')
I would expect this to be translated to
(CodePropriete = MH) AND (NbPiedsParcelle > 2 OR NbRangsParcelle > 2) AND Cepage = Chardonnnay
but my tests suggests it is translated to((((CodePropriete = MH) AND NbPiedsParcelle > 2) OR NbRangsParcelle > 2) AND Cepage = Chardonnnay)
.Am I doing something wrong ?
The text was updated successfully, but these errors were encountered: