You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed this method returned me like 400 records, exactly 20 pages of 20 records, and a lot of repeated options, so I debug it and noticed that the class "ParameterListTransportationOptions" have 2 properties with cammel case: "placementOptionId" and "shipmentId" and 1 property in Pascal case "PaginationToken" so I suspected that the process did not mapped the token and therefore it got into a cycle of getting alway the page 1 until it reached 20 times, wich is the default maximum pages.
So, I created my own parameter class renaming to "paginationToken" (cammel case), inherited a service to use my model and it worked!, I got now 92 records with no repetiton.
So could you look into this issue?, check if this is a good solution so I can avoid having inheritances and additional models,
thanks
The text was updated successfully, but these errors were encountered:
Hi demelendez, I came to the same conclusion (that there was an issue with paginationtoken).
You fixed this in ListTranportaionOptions, but wouldn't this issue be on all the other paginated lists as well, like ParameterListInboundPlans etc.?
I noticed this method returned me like 400 records, exactly 20 pages of 20 records, and a lot of repeated options, so I debug it and noticed that the class "ParameterListTransportationOptions" have 2 properties with cammel case: "placementOptionId" and "shipmentId" and 1 property in Pascal case "PaginationToken" so I suspected that the process did not mapped the token and therefore it got into a cycle of getting alway the page 1 until it reached 20 times, wich is the default maximum pages.
So, I created my own parameter class renaming to "paginationToken" (cammel case), inherited a service to use my model and it worked!, I got now 92 records with no repetiton.
So could you look into this issue?, check if this is a good solution so I can avoid having inheritances and additional models,
thanks
The text was updated successfully, but these errors were encountered: