UNPKG

n8n-nodes-mongo-change-stream-trigger

Version:

n8n-nodes-mongo-change-stream-trigger is a community package for n8n that brings real-time MongoDB integration to your workflows. It uses MongoDB’s native change streams to monitor a specified collection without relying on polling and offers advanced, cas

6 lines (5 loc) 270 B
import { INodeType, INodeTypeDescription, ITriggerResponse, ITriggerFunctions } from 'n8n-workflow'; export declare class MongoChangeTrigger implements INodeType { description: INodeTypeDescription; trigger(this: ITriggerFunctions): Promise<ITriggerResponse>; }