feat: add useClientSideAsyncQuery composable by rebeccarich · Pull Request #560 · nuxt-modules/apollo

Similar to useAsyncQuery this is a convenience wrapper around Nuxt's useAsyncData that allows you to easily query the Apollo client. Unlike useAsyncQuery, the request will only be made from the browser and not the server.

The use case for this is if the responses from your GraphQL server are slow but you do not want to block the initial page render.

Let me know if there is already a way of achieving this that I missed!