Concluding Lazy Queries
Implement a lazy query with debouncing in a React application.
We'll cover the following...
A final word on lazy queries
Lazy queries are not too different from regular queries. Lazy queries give us the ability to load data later on within a component, such as when a user types some input. Another time to use a lazy query could be after a user selects an item from a dropdown menu or picks a day in a calendar.
Exercise: Adding lazy queries and debouncing
Here is how this code widget ...