Understanding how Apollo Cache normalizes data
Apollo uses a cache layer for its queries. By default, before executing a query, first the cache is accessed and if its not present in the cache then it makes a network call. This is called the cache-first fetch policy. You can find other fetch polic...
Dec 6, 20208 min read435