Imagine an component hierarchy like so:
<Team>
<Leaderboard />
<PlayerStats />
</Team>
In the render method of Leaderboard, we have an Apollo/GraphQL Query component fetching the top players.
We also have an component that triggers upon getting a new PlayerStat (currently in PlayerStats -- but happy to put it anywhere).
How do I get the Leaderboard query to refetchQueries/clear cache upon a trigger from the PlayerStat Subscription component.
Thanks!!