Noticed a thing for the command pp solution list:
The command uses the following line to retrieve all data.
|
const res = await request.get<{ value: Solution[] }>(requestOptions); |
We should refactor the request.get<{ value: any[] }>(...) which doesn't support pagination to odata.getAllItems<any>(...)
Noticed a thing for the command
pp solution list:The command uses the following line to retrieve all data.
cli-microsoft365/src/m365/pp/commands/solution/solution-list.ts
Line 74 in fd24b4e
We should refactor the
request.get<{ value: any[] }>(...)which doesn't support pagination toodata.getAllItems<any>(...)