Hey
We have a schema, where part of it is
type User implements Node {
id: ID!
fullName: String
reports: [Report!]!
}
type Report {
id: ID!
name: String!
}
union MutationDeleteReportResult = BaseError | MutationDeleteReportSuccess
type MutationDeleteReportSuccess {
data: User!
}
...
type Mutation {
deleteReport(input: MutationDeleteReportInput!): MutationDeleteReportResult!
}
and a client mutation
mutation DeleteReport($input: MutationDeleteReportInput!) {
deleteReport(input: $input) {
... on MutationDeleteReportSuccess {
data {
id
reports {
id
__typename
}
__typename
}
__typename
}
... on BaseError {
message
__typename
}
__typename
}
}
However, when I run the mutation, I get the following warning in the console:
Cache data may be lost when replacing the reports field of a User object.
This could cause additional (usually avoidable) network requests to fetch data that were otherwise cached.
To address this problem (which is not a bug in Apollo Client), define a custom merge function for the User.reports field, so InMemoryCache can safely merge these objects:
existing: {0: {…}}0: {__ref: 'Report:dd95fe69-e049-4e81-a02f-189e1b19b446'}[[Prototype]]: Object
incoming: {}[[Prototype]]: Object
This does not make sense to me, because as far as I understand, the query is normalized and the cache should be updated automatically. ID field is queried in the mutation, so the cache should be updated.
The docs says that the default behavior is the incoming overriding the existing, which is the behavior I want and expect. I know I can get rid of the warning by doing
User: {
fields: {
reports: {
merge(_, incoming: any[]) {
return incoming;
},
},
},
},
but I don’t understand why I would need to?