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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,7 +15,7 @@
* limitations under the License. * 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 { export interface ProcessVariableFilterModel {
processDefinitionKey: string; processDefinitionKey: string;