Closed
Description
Arduino IDE2 has the capability to fetch the sketches from the arduino create API.
During the initialization phase the following function gets called:
const sketches = await this.createApi.sketches();
We noticed that create-api has a pagination implemented that limits result to 120 result per page, we need to enable fetching with pagination.
To do so, the sketches()
method implementation need to handle the pagination and return the result once all the sketches are correctly fetched from the endpoint