@squidcloud/backend
    Preparing search index...

    Interface MongoNativeQueryContext

    Context for executing a MongoDB query.

    interface MongoNativeQueryContext {
        aggregationPipeline: any[];
        collectionName: string;
        integrationId: string;
        type: "mongo";
    }

    Hierarchy

    • BaseNativeQueryContext
      • MongoNativeQueryContext
    Index

    Properties

    aggregationPipeline: any[]

    Array of aggregation pipeline stages.

    collectionName: string

    Name of the MongoDB collection to query.

    integrationId: string

    Identifier for the integration.

    type: "mongo"

    Specifies that the query is for a Mongo database.