mutate method
Implementation
Future<DataType?> mutate(
VariablesType variables, {
bool scheduleToQueue = false,
}) {
if (isMutating && !scheduleToQueue) {
return Future.value(state.data);
}
return _operate(variables).then((_) => data);
}