cult-of-coders / apollo-live-client

Handles reactive events to easily work with live queries
MIT License
12 stars 2 forks source link

Make sure you properly extend the store and without affecting __typename #2

Open theodorDiaconu opened 5 years ago

theodorDiaconu commented 5 years ago
if (found) {
  return [...store.slice(0, idx), found, ...store.slice(idx + 1)];
}