Skip to content

Instantly share code, notes, and snippets.

@MattDionis
Created May 24, 2019 13:56
Show Gist options
  • Save MattDionis/7a1d4b8b5a6131f80d2efea29621dc45 to your computer and use it in GitHub Desktop.
Save MattDionis/7a1d4b8b5a6131f80d2efea29621dc45 to your computer and use it in GitHub Desktop.
const [updateUserSetting] = useMutation(
UPDATE_APP_BAR_COLOR_SETTING_MUTATION,
{
variables: { setting },
update: cache => {
let { appBarColorSetting } = cache.readQuery({
query: APP_BAR_COLOR_SETTING_QUERY
});
appBarColorSetting.setting = setting;
cache.writeQuery({
query: APP_BAR_COLOR_SETTING_QUERY,
data: { appBarColorSetting }
});
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment