/** * Taiga Node - Version 1 * Discriminator: resource=epic, operation=getAll */ interface Credentials { taigaApi: CredentialReference; } /** Get many epics */ export type TaigaV1EpicGetAllParams = { resource: 'epic'; operation: 'getAll'; /** * ID of the project to which the epic belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ projectId?: string | Expression; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 50 */ limit?: number | Expression; /** * Filters * @default {} */ filters?: { /** ID of the user whom the epic is assigned to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ assigned_to?: string | Expression; /** Whether the epic is closed * @default false */ statusIsClosed?: boolean | Expression; }; }; export type TaigaV1EpicGetAllNode = { type: 'n8n-nodes-base.taiga'; version: 1; credentials?: Credentials; config: NodeConfig; };