not
Creates a filter that matches all documents that do not match the passed in filter. Requires the property to passed as part of the value passed in and lifts it to create a valid "$not" query: ``not(eq("x", 1))``
will generate a MongoDB query like: {x : $not: {$eq : 1}}
@param filter the value @return the filter