Add pagination support for Hierarchy Widget children list
Summary
We're increasing the limit on the number of children a parent Work Iten can have, from 100
to 5000
, this is enforced until #463814 is addressed. Hierarchy Widget on Work Items has gotten backend support for up to 5000 children via !154308 (merged) but frontend can only show 100 children at the moment, this issue tracks the frontend change required for the widget to show more than 100 children.
Implementation Proposal
We need to add pagination support for the Hierarchy Widget list, the approach can be similar to the Boards list where initially, a batch of 10 items is loaded and then as the list is scrolled to the end, the next batch is fetched and shown, we need to do something similar for Hierarchy Children (but with a higher batch size).