I'm using Apollo Client and React-Native and the issue I'm having is I have a working query making a request when the view is rendered with default data.
- I can see an number in my view which is defaulted to
0
. - I can see the request being logged on my graphql server.
- The view does not update automatically with the new prop values from the response
- If I touch the screen the view updates and the page is populated with data from graphql.
What is happening here? How can I make it so that when the response comes back it automatically updates the component props and re-renders the component?