Skip to content

Commit

Permalink
AAE-29995 Add "ne" filter operator (#10542)
Browse files Browse the repository at this point in the history
  • Loading branch information
BSekula authored Jan 9, 2025
1 parent 65b9916 commit bb7369c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

export type ProcessFilterOperators = 'eq' | 'like' | 'gt' | 'gte' | 'lt' | 'lte';
export type ProcessFilterOperators = 'eq' | 'ne' | 'like' | 'gt' | 'gte' | 'lt' | 'lte';

export interface ProcessVariableFilterModel {
processDefinitionKey: string;
Expand Down

0 comments on commit bb7369c

Please sign in to comment.