apollographql / apollo-client

:rocket:  A fully-featured, production ready caching GraphQL client for every UI framework and GraphQL server.
https://apollographql.com/client
MIT License
19.31k stars 2.65k forks source link

Infinite network requests with non-normalized objects #11879

Open oscar60310 opened 2 months ago

oscar60310 commented 2 months ago

Issue Description

The issue is similar to https://github.com/apollographql/apollo-client/issues/9450, but it involves an additional non-normalized object.

I have two components which query the same object with different properties:

Compoment1

const QUERY_DATA_1 = gql`
  query foobar1 {
    foobar {
      id
      lastOnlineAt # changes on every query
      nested {
        value1
      }
    }
  }
`;

function Component1() {
  const { data } = useQuery(QUERY_DATA_1, {
    fetchPolicy: "cache-and-network",
    nextFetchPolicy: "cache-first",
  });

  return (
    <div>
      1: {data?.foobar.lastOnlineAt} {data?.foobar.nested.value1}
    </div>
  );
}

Component2

export const QUERY_DATA_2 = gql`
  query foobar2 {
    foobar {
      id
      lastOnlineAt # changes on every query
      nested {
        value2 
      }
    }
  }
`;

function Component2() {
  const { data } = useQuery(QUERY_DATA_2, {
    fetchPolicy: "cache-and-network",
    nextFetchPolicy: "cache-first",
  });

  return (
    <div>
      2: {data?.foobar.lastOnlineAt} {data?.foobar.nested.value2}
    </div>
  );
}

I realized that we should define a merge function for the non-normalized object foobar.nested:

new InMemoryCache({
    typePolicies: {
      Nested: {
        // merge: true,
      },
    },
  }),

Expected behaviour:

Before defining a merge function for it, I expected Apollo to log a warning and replace the value as described in the documentation.

Actual behaviour:

The two components send requests alternately and repeatedly.

https://github.com/apollographql/apollo-client/assets/9553914/8da3fb76-c20d-4017-93fd-d0dd50ca49e9

Link to Reproduction

https://github.com/oscar60310/apollo-issue-demo

Client code: https://github.com/oscar60310/apollo-issue-demo/blob/main/src/App.tsx Server code: https://github.com/oscar60310/apollo-issue-demo/blob/main/server.js

Reproduction Steps

No response

@apollo/client version

3.10.4

alessbell commented 2 months ago

Hi @oscar60310 👋

Thanks for opening this issue with a clear reproduction of what you're seeing!

First, when I ran your reproduction, I noted that the fetchPolicy and nextFetchPolicy had no bearing on the infinite loop behavior, so I commented them out.

Before defining a merge function for it, I expected Apollo to log a warning and replace the value as described in the documentation.

This is indeed what's happening, but for reasons I'll get into below, our two queries are "replacing the value" in an infinite loop, with no way to resolve the feud. First, here's the warning I saw:

CleanShot 2024-06-07 at 15 00 17

Can you confirm you see a similar warning?

The warning notes that Cache data may be lost when replacing the nested field of a Foobar object and that This could cause additional (usually avoidable) network requests to fetch data that were otherwise cached.

As you noted, when the Nested entity can't be normalized, its fields are nested on our cached Foobar:foobar entity.

The problem arises when QUERY_DATA_1 and QUERY_DATA_2 select non-overlapping fields on this non-normalized entity. In practice, this means that as soon as e.g. QUERY_DATA_1 resolves with foobar.nested.value1, QUERY_DATA_2 sees that foobar.nested.value2 is missing in the cache, kicking off a network request whose response removes value1 from the cache and replaces it with value2. QUERY_DATA_1 then "notices" value1 is missing, and the cycle repeats forever.

I think a note in the docs advising against selecting non-overlapping fields on non-normalized objects would be helpful but would love any other ideas/suggestions you have here. Thanks!

oscar60310 commented 2 months ago

Hi @alessbell , thanks for the explanation!

Can you confirm you see a similar warning?

The warning notes that Cache data may be lost when replacing the nested field of a Foobar object and that This could cause additional (usually avoidable) network requests to fetch data that were otherwise cached.

Yes, I see the same warning. It makes me think that we might lose the benefit of the cache. In the worst case, each hook would send a single query. However, the consequence is much more critical than simply not using the cache; it could result in infinite requests being sent to our server.

Is it possible to escape from the loop when we detect a cache issue?

I noticed that if we don't have a value that changes with each request, there won't be an infinite loop, and the cache is not replaced (component1 and component2 both get the correct value).

export const QUERY_DATA_1 = gql`
  query foobar1 {
    foobar {
      id
      # lastOnlineAt
      nested {
        value1
      }
    }
  }
`;

https://github.com/apollographql/apollo-client/assets/9553914/5d6651c5-7811-4670-beae-4c63a849fabb

marco2216 commented 2 months ago

This sounds very similar to this issue, a fix was being worked on for that, but not sure what the status is for that and if it would fix this issue also. I'm not sure what the difference is with this repro and mine, I didn't look in detail, but in my repro it only occurred with the read function defined, but it sounds like you're having the same issue even without a read function.

yoavbls commented 1 week ago

We're experiencing the same thing at Wiz. When the key field is missing accidentally for some object and the object returns two times in a short time with different fields this unexpected behavior happens. We didn't find it in the docs, we wish we had the option to disable automatic refetching in such cases. Are there any intentions to solve it? Thanks