Hi @asdethprime.
It could be that you need to refetch after a mutation as described here:
It notes:
tl;dr : if things with your App’s CRUD rendering seem broken after upgrading, you’ll need to update the Mutations in your components to use Apollo’s new features like
refetchQueries
:
- See this Apollo Doc about Mutations and Cache
- For a more advanced approach and example using
inMemoryCache
, see this Forum Topic by @jtoar - Redwood Scaffold generated CRUD will also need to be updated. See the “Manual Code Modifications”