jaaberg
02/14/2018, 8:41 PMjaaberg
02/14/2018, 8:41 PMconversation(id: $id) {
messages {
text
author { name }
}
users { name }
}
And another component B fetching this:
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.