We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 341bfcf commit 9ce3b67Copy full SHA for 9ce3b67
1 file changed
src/org/labkey/remoteapi/query/Filter.java
@@ -70,6 +70,9 @@ public enum Operator
70
DOES_NOT_CONTAIN("Does Not Contain", "doesnotcontain", "DOES_NOT_CONTAIN", true),
71
DOES_NOT_CONTAIN_EXACTLY("Does Not Contain Exactly", "doesnotcontainexactly", "DOES_NOT_CONTAIN_EXACTLY", true),
72
73
+ IS_EMPTY("Is Empty", "isempty", "IS_EMPTY", true),
74
+ IS_NOT_EMPTY("Is Not Empty", "isnotempty", "IS_NOT_EMPTY", true),
75
+
76
CONTAINS_ONE_OF("Contains One Of (example usage: a;b;c)", "containsoneof", "CONTAINS_ONE_OF", true),
77
CONTAINS_NONE_OF("Does Not Contain Any Of (example usage: a;b;c)", "containsnoneof", "CONTAINS_NONE_OF", true),
78
0 commit comments