Update multiple reactive vars but only refetch queries once?

This should be possible with cache.batch:

cache.batch({
  update(c) {
    someObject.color(color);
    someObject.name(name);
  },
});
1 Like