UNPKG

@firefliesai/n8n-nodes-fireflies

Version:

An n8n integration for the Fireflies.ai API that enables workflow automation with meeting transcripts, analytics, summaries, and other conversation data from Fireflies.ai's AI meeting assistant.

17 lines (16 loc) 544 B
import { IExecuteFunctions } from 'n8n-workflow'; export interface GraphQLError { message: string; code?: string; extensions?: { code?: string; status?: number; correlationId?: string; }; } export declare class GraphQLApiError extends Error { readonly errors: GraphQLError[]; readonly data?: any; constructor(message: string, errors: GraphQLError[], data?: any); } export declare function callGraphQLApi(this: IExecuteFunctions, query: string, variables?: Record<string, any>): Promise<any>;