crud icon indicating copy to clipboard operation
crud copied to clipboard

adding new operators

Open AndreiSemenovMinsk opened this issue 1 year ago • 1 comments

Added a way to search by multiple values:

Sample:

crud.select('users', {{'=', 'name', {'Andrey', 'Sergey'}}}, {fields = {'_id', 'name'}});

Added new operators such as:

'<>' - not '>><<' - between '<<>>' - out of '<<!>>' - out of or null '>)' - include

Sample:

crud.select('users, {{ '>><<', 'activated_at', { dateFrom, dateTo } } }, { fields = { '_id' }})

AndreiSemenovMinsk avatar Jun 29 '23 09:06 AndreiSemenovMinsk