Splitting GET request for table with 20 columns into multiple GETs
The request for loading my table involves a decent amount of computation where it takes time to load. I want to make it such that the first GET request simply gets the first column (which is the name) and then all the other columns are gotten in another GET request. This would be much better UX and it is what I've liked in my own experience. Any resources on what is the best practice for such implementations? Any resources on how to handle this in react query?
0 Replies