mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(Lemlist Node): Fix pagination issues with campaigns and activities (#6734)
This commit is contained in:
@@ -51,11 +51,11 @@ export async function lemlistApiRequestAllItems(
|
||||
this: IExecuteFunctions | ILoadOptionsFunctions | IHookFunctions,
|
||||
method: string,
|
||||
endpoint: string,
|
||||
qs: IDataObject = {},
|
||||
) {
|
||||
const returnData: IDataObject[] = [];
|
||||
|
||||
let responseData;
|
||||
const qs: IDataObject = {};
|
||||
|
||||
qs.limit = 100;
|
||||
qs.offset = 0;
|
||||
|
||||
Reference in New Issue
Block a user