@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>;
        $type?: NestedValue<T, string>;
    }

    Type Parameters

    • T = any
    Index

    Properties

    Properties

    $exists?: NestedValue<T, boolean>

    "name" in { name: "John" }

    $type?: NestedValue<T, string>

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