yarnyarn devOpen the dev server which is served at: http://localhost:3002
- Once loaded, the page will initialize the Apollo client with
InMemoryCachecache. - On mount the App component will use the
useQueryhook with the querygetPageQuery, which will query for page panel data. - When data is fetched it will be printed on to the page.
- Compare the data on the page (or look inside the client cache in the inspector) with the data that we receive over the network.
The data received over the network and the data we get from the Apollo cache/response does not align, data is missing from Apollo.