@squidcloud/backend
    Preparing search index...

    Interface PureNativeQueryContext

    Context for executing a pure database query.

    interface PureNativeQueryContext {
        integrationId: string;
        params: Record<string, any>;
        query: string;
        type: "pure";
    }

    Hierarchy

    • BaseNativeQueryContext
      • PureNativeQueryContext
    Index

    Properties

    integrationId: string

    Identifier for the integration.

    params: Record<string, any>

    Parameters to be used in the query.

    query: string

    SQL query string to be executed.

    type: "pure"

    Specifies that the query is for a relational database.