I had a question and can't find it in documentation. For example I have a list
products with ids 1,2,3,4
And I have another list, categories with ids 1,2,3,4
.
example query
{
products {
id
name
categories {
id
name
}
}
}
We can see that they both have same ids but different typename inside apollo. Will it create any problem while caching the data? As Apollo normalizes our data with the id's, Help would be appreciated.