there is member schema like following
type Member {
is_deleted
}
when i change only is_deleted field, what is the best practice change that field
- using updateMember mutation that can modify all fields
- using another changeDeleteStatus mutation that can only change is_delete status
please give me the insight