Skip to content

Instantly share code, notes, and snippets.

@pkellner
Created October 14, 2020 21:35
Show Gist options
  • Save pkellner/40947c10777fd4c730c102cc74df6430 to your computer and use it in GitHub Desktop.
Save pkellner/40947c10777fd4c730c102cc74df6430 to your computer and use it in GitHub Desktop.
<Button color="warning" onClick={() => {
const { speakers } = apolloClient.cache.readQuery({ query: GET_SPEAKERS });
apolloClient.cache.writeQuery({
query: GET_SPEAKERS,
data: {
speakers: {
datalist: [...speakers.datalist].sort((a,b) => a.id - b.id)
},
},
});
}}>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment