useAsyncQuery can't refresh
Environment
I came across different issues opened about what it looks to be the same problem.
I have not been able to refresh the data of useAsyncQuery in any way.
Describe the bug
useAsyncQuery only seems to work on page refresh / landing.
Expected behaviour
refresh() or watch makes no different (not sure they are even needed on route change).
Reproduction
No response
Additional context
Nuxt 3 documentation does not mention useAsyncQuery: is this actually usable in Nuxt 3?
Logs
No response
Looks like the issue might be related to the token.
After many tries I gave a go to nuxt-graphql-client instead.
While testing I made the api public and everything immediately worked. When I tried a token to access it, I experienced the same errors on pages navigation.
This time, however, I found a retainToken option in that documentation which, added and set to true, fixed the issue.
Not sure if apollo has a similar thing, I expect it does, though I will probably stick to nuxt-graphql-client at this point.
In Addition, The result from useAsyncQuery is unable to update automatically with Apollo Cache. I had to write a custom useAsyncQuery. It is still working for me.
type Options<TResult, TVariables> = OptionsParameter<TResult, TVariables> & {
key?: string
}
export const useAsyncQuery = async <TResult = any, TVariables extends OperationVariables = OperationVariables> (document: DocumentParameter<TResult, TVariables>, variables?: VariablesParameter<TVariables>, options?: Options<TResult, TVariables>) => {
const { client } = useApolloClient()
const fn = () => client.query<TResult, TVariables>({
query: document as DocumentNode,
variables: variables as TVariables
}).then((res) => res.data)
const key = options?.key || hash({ query: print(document as DocumentNode), variables })
await useAsyncData(key, fn)
return useQuery(document, variables as TVariables)
}
Basically, I call useAsyncData to write the result to Apollo Cache and return useQuery instead.
Also experiencing this issue, I'm kinda blown away this isn't tripping everyone up. Is is just no on is using this package? What are we missing.
Also experiencing this issue, I'm kinda blown away this isn't tripping everyone up. Is is just no on is using this package? What are we missing.
Same here, this is really annoying, in nuxt2 I was refreshing my queries via EventBus after closing a modal, worked perfectly fine. With this version (5.0.0-alpha.10 and before) I can call the refresh function but no refresh is happening. useAsyncQuery works perfectly fine for fetching queries once in async setup().
We ended up doing a bunch of extra work to ensure we're only calling useAsyncQuery server side and useQuery client side. It makes our code brittle and not very DRY but it's the only thing we found could work. I wish I had a better understanding of why useAsyncQuery is not recommended for client side.
UPDATE: @ssyberg : I just found out that reactive queries in options api are working like in nuxt2, you just have to place the apollo object after the setup routine, this is awesome !!! :) With that you can easily do a this.$apollo.queries.myquery.refresh() and everything is perfectly fine, no need for useAsyncQuery, just everything out of the box, like in nuxt2.
export default defineNuxtComponent({
name: "MyTest",
async setup(props) {
.....
},
apollo: {
setting: {
query: gql`
query ($name: String!) {
setting(where: { name: $name }) {
show
}
}
`,
variables() {
return {
name: "showNameOfSomeone",
};
},
update: (data) => data.setting,
error() {
if (process.client) {
this.$nextTick(() => {
this.$buefy.toast.open({
message: this.$t("loading_error"),
type: "is-danger",
});
});
}
},
},
currentSchemas: {
query: gql`
.......
},
data() {
return {
......
We ended up doing a bunch of extra work to ensure we're only calling
useAsyncQueryserver side anduseQueryclient side. It makes our code brittle and not very DRY but it's the only thing we found could work. I wish I had a better understanding of whyuseAsyncQueryis not recommended for client side.
@ssyberg Same issue here
Understanding the Issue with "Refresh"
Discovery Process
While looking into the code and experimenting, I discovered something:
The asynchronous queries are wrapped in Nuxt's useAsyncData, which explains why we get refresh in return instead of vue-apollo's (the underlying package) refetch.
I actually discovered why it doesn't work when playing around with the caching options.
Conclusion: refresh =\= refetch
When executing the refresh method returned by useAsyncQuery it doesn't execute the refetch method from the underlying package. It just executes the function passed to the useAsyncData again. Which results in loading the response from cache if cache is enabled (which is enabled by default).
Solution/workaround
If you want to be able to refresh you'll need to globally disable the cache. Which is a bummer if you'd like to cache. You can still enable cache by setting it true like this: (would love to have this documented)
const { data, refresh } = await useAsyncQuery({
query,
variables,
cache: true // Here
})
Caveat using this solution/workaround
For some reason when cache is globally enabled setting it false does not work due to this line here which could be fixed with this PR
TL:DR
Refresh does not "refetch" when cache is enabled.
@timyourivh thanks for approach, it works! But cache is very important for optimization. Is it possible to fix?
Same issue