mistic100 / jQuery-QueryBuilder

jQuery plugin offering an interface to create complex queries

Home Page:https://querybuilder.js.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

request operator for 'is not true'

makalin opened this issue · comments

NOT LIKE does not list NULL items so I'm replacing

WHERE datas NOT LIKE '%2023%' to
WHERE datas IS NULL OR datas NOT LIKE '%2023%'

but to get same results in single query there a shorter way like

WHERE (datas LIKE '%2023%') IS NOT TRUE

so is there possible way to add in_not_true and is_true?