Hi, I have a question probably more related to apo...
# prisma-whats-new
j
Hi, I have a question probably more related to apollo, so I am sorry if this is the wrong place to ask.
I have one component A fetching this:
Copy code
conversation(id: $id) {
  messages {
    text
    author { name }
  }
  users { name }
}
And another component B fetching this:
Copy code
user {
  conversations {
    id
    users { name }
  }
}
It seems like they affect each other because A renders nice. Navigate to B which renders nice. Navigate back to A which has lost its props from the query (seems to be happening when navigating from A to B, aka when doing the second query. I guess it is just some caching/state in apollo I’m just not understanding. Any help appreciated.