You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 20, 2020. It is now read-only.
To get around this I have been doing something like:
moduleSubscriber {
[@react.component]
letmake= (~results) => {
(subResults, _) =ApolloHooks.useSubscription(...);switch subResults {
|Data(newResults) => <StatelessRenderer results=newResults />
|_=> <StatelessRenderer results=results />
}
}
}
// parent component will query, then child will either pass data through // or re-render on subscription update
[@react.component]
letmake=()=> {
(results, _) =ApolloHooks.useQuery(...);
<Subscriber results=results />
}
But this has the major problem that each subscription push most contain all the data required to re-render a components, as opposed to an individual item to add, subtract, etc.