AAE-29995 Add "ne" filter operator (#10542)

This commit is contained in:
Bartosz Sekula
2025-01-09 10:37:10 -05:00
committed by GitHub
parent 65b991674d
commit bb7369c2ca

View File

@@ -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;