@wxn0brp/db-core
    Preparing search index...

    Type Alias TypeAndExistenceOperators<T>

    Type and Existence Operators with nested support

    type TypeAndExistenceOperators<T = any> = {
        $exists?: NestedValue<T, boolean, any>;
        $type?: NestedValue<T, JSPrimitiveType, any>;
    }

    Type Parameters

    • T = any
    Index

    Properties

    Properties

    $exists?: NestedValue<T, boolean, any>

    "name" in { name: "John" }

    "name" == "string" in { name: "John" }