From a561dffc77fa9be2674ddfc809980886458d79f9 Mon Sep 17 00:00:00 2001 From: ian Date: Mon, 20 Jun 2022 23:24:35 +0800 Subject: [PATCH] Update get-filter-operators-for-type.ts (#14001) Remove the duplicated `null` and `nnull` for Datetime types. This results in duplicated tests run for the affected fields. --- packages/shared/src/utils/get-filter-operators-for-type.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/shared/src/utils/get-filter-operators-for-type.ts b/packages/shared/src/utils/get-filter-operators-for-type.ts index 6eeba380b9..6815fedbbe 100644 --- a/packages/shared/src/utils/get-filter-operators-for-type.ts +++ b/packages/shared/src/utils/get-filter-operators-for-type.ts @@ -60,8 +60,6 @@ export function getFilterOperatorsForType( return [ 'eq', 'neq', - 'null', - 'nnull', 'lt', 'lte', 'gt',