You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently you can't make queries/mutations accept refs as inputs, which forces you to use something like const { error, refresh: submit } = await useAsyncData('updateAccount', () => GqlUpdateAccount({})).
If we could get the inputs to accept refs, you could use the useAsyncGql method directly and get nicely typed errors (for example).
Right now we would have to build a custom composable to accept this.
The text was updated successfully, but these errors were encountered:
Currently you can't make queries/mutations accept refs as inputs, which forces you to use something like
const { error, refresh: submit } = await useAsyncData('updateAccount', () => GqlUpdateAccount({}))
.If we could get the inputs to accept refs, you could use the
useAsyncGql
method directly and get nicely typed errors (for example).Right now we would have to build a custom composable to accept this.
The text was updated successfully, but these errors were encountered: