Questions tagged [apollo-cache-inmemory]

When it comes to caching with Apollo, the default mechanism is used by apollo-server. If you have any other inquiries about caching in Apollo, feel free to tag them with [apollo-server].

Instructions for obtaining and assigning a reference to a recently cached associated object within the Apollo client InMemoryCache

My data consists of a set of interconnected items like this: book { id ... related_entity { id ... } } Once Apollo caches it, there are two separate cache objects. The related_entity field on book points to an EntityNode object. Everything ...