Invert a filter by applying a NOT logical operation:
not(fn) = NOT fn
Note: This also inverts type modification, i.e.
if the base is { field: string | number | null }
and the modification is { field: string },
then the negated filter will have
inverted modification { field: number | null }
Invert a filter by applying a NOT logical operation:
not(fn) = NOT fn