Reusing a Mutation in Relay
问题 Is it possible to reuse a mutation? Let's say there exists a mutation UpdateItemMutation which I'm passing props to, but sometimes I just want to update a specific attribute. i.e. I want to be able to do: UpdateItemMutation({prop1: 'Data', prop2: 'Data2'}) UpdateItemMutation({prop1: 'Data'}) UpdateItemMutation({prop2: 'Data2'}) Unfortunately, my optimistic config complains since I'm passing an undefined to it. Also, since I have to take into account for the mutation updating everything, this