Skip to content

Commit

Permalink
fix(Asana Node): Fix issue with pagination (#11415)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joffcom authored Oct 28, 2024
1 parent 12d218e commit 04c075a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/nodes-base/nodes/Asana/GenericFunctions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ export async function asanaApiRequestAllItems(
uri,
);
uri = get(responseData, 'next_page.uri');
query = {}; // query is not needed once we have next_page.uri
returnData.push.apply(returnData, responseData.data as IDataObject[]);
} while (responseData.next_page !== null);

Expand Down

0 comments on commit 04c075a

Please sign in to comment.