@squidcloud/client
    Preparing search index...

    Type Alias SerializedSimpleQuery

    Represents a simple serialized query structure for database operations.

    type SerializedSimpleQuery = {
        dereference: boolean;
        query: Query;
        type: "simple";
    }
    Index

    Properties

    dereference: boolean

    Indicates whether references should be dereferenced during query execution.

    query: Query

    The query object defining the database operation.

    type: "simple"

    Specifies that this is a simple query type.