- loadQuery and usePreloadedQuery - This combination will actually be performant because we are using reference returned by loadQuery in the usePreloadedQuery hook so this follows the "render-as-you-fetch" pattern.
- loadQuery and useLazyLoadQuery - If we use this combination then also it is giving the same performance as that of 1st combination. According to documentation we should use usePreloadedQuery query hook with loadQuery. When we useLazyLoadQuery with loadQuery then it does not make an additional API call because it uses the same data which we fetched from loadQuery.
So practically both ways are same or different? In terms of good architecture what should be the preferred way and why?