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
right now, the library supports - for ranges and , for arrays, but would be nice is the ability to support other separators and the keys they get put into. I would like to add support for + into an ands property, where it would not mix with other operators.
so:
id:x+y would result in { ands: { id: ['x', 'y'] } }
id:x id:y+z would result in { id: ['x'], ands: { id: ['y', 'z'] } }
alternatively, just having support for ands would be nice too.
The text was updated successfully, but these errors were encountered:
right now, the library supports
-
for ranges and,
for arrays, but would be nice is the ability to support other separators and the keys they get put into. I would like to add support for+
into anands
property, where it would not mix with other operators.so:
id:x+y
would result in{ ands: { id: ['x', 'y'] } }
id:x id:y+z
would result in{ id: ['x'], ands: { id: ['y', 'z'] } }
alternatively, just having support for ands would be nice too.
The text was updated successfully, but these errors were encountered: