@wearesage/schema
    Preparing search index...

    Interface QueryDatabaseAdapter

    Query execution database adapter interface

    interface QueryDatabaseAdapter {
        type: "postgresql" | "mongodb" | "neo4j" | "redis";
        execute<T>(
            compiled: CompiledQuery,
            entityClass: new (...args: any[]) => T,
        ): Promise<any>;
    }
    Index

    Properties

    Methods

    Properties

    type: "postgresql" | "mongodb" | "neo4j" | "redis"

    Methods