DEV Community

Discussion on: Building a web-monetized RSS reader using Blitz.js

Collapse
 
flybayer profile image
Brandon Bayer

This is awesome, Emma!

The issue you mentioned with the useQuery cache is one of the things that still needs built 😏 The workaround is to do this:

const [feed, {refetch}] = useQuery(getFeed, { where: { id } })

// After mutation, manually call refetch()
Collapse
 
emma profile image
Emma Goto 🍙

Ah neat - glad to see there's a workaround!