import {FindOperator} from "../FindOperator"; /** * Find Options Operator. * Used to negotiate expression. * Example: { title: not("hello") } will return entities where title not equal to "hello". */ export function Not(value: T|FindOperator) { return new FindOperator("not", value); }