mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
* 📘 Set up overload * 🔥 Remove inferrable record assertions * 👕 Fix semicolon * 👕 Fix another semicolon
36 lines
1002 B
TypeScript
36 lines
1002 B
TypeScript
import { IExecuteFunctions } from 'n8n-core';
|
|
|
|
import { IDataObject, INodeExecutionData } from 'n8n-workflow';
|
|
|
|
import { apiRequest, apiRequestAllItems } from '../../../transport';
|
|
|
|
export async function getAll(
|
|
this: IExecuteFunctions,
|
|
index: number,
|
|
): Promise<INodeExecutionData[]> {
|
|
const returnAll = this.getNodeParameter('returnAll', index) as boolean;
|
|
const filters = this.getNodeParameter('filters', index);
|
|
|
|
let qs = {} as IDataObject;
|
|
const requestMethod = 'GET';
|
|
const endpoint = 'tickets';
|
|
const body = {} as IDataObject;
|
|
|
|
if (filters) {
|
|
qs = filters;
|
|
}
|
|
|
|
if (returnAll === false) {
|
|
qs.per_page = this.getNodeParameter('limit', index);
|
|
}
|
|
|
|
let responseData;
|
|
if (returnAll) {
|
|
responseData = await apiRequestAllItems.call(this, requestMethod, endpoint, body, qs);
|
|
return this.helpers.returnJsonArray(responseData);
|
|
} else {
|
|
responseData = await apiRequest.call(this, requestMethod, endpoint, body, qs);
|
|
return this.helpers.returnJsonArray(responseData.tickets);
|
|
}
|
|
}
|