使用Apollo的Mutation组件时,有什么方法可以从更新回调函数内部获取突变的变量吗?
<Mutation
mutation={mutation}
update={(cache, result) => {
// is there any way to get the mutation variables here?
}}
>
{mutate => <MyComponent onSubmit={mutate} />}
</Mutation>
答案 0 :(得分:1)
不幸的是,该信息没有传递给更新功能。您需要将Mutation
组件移至MyComponent
内(或将状态 up 移出MyComponent
),以便可以将变量直接传递给Mutation
组件,而不是mutate
函数:
<Mutation
mutation={mutation}
variables={{ ... }}
update={()=> {
// Now whatever values you used for the mutation will also be available here
}}
>
{mutate => {
// mutate can be used without passing any variables to it
}}
</Mutation>
您可能有一个独特的用例,但是通常我们不必首先担心变量。通常,插入,删除和更新突变会返回插入/删除/更新的对象,并且有效载荷足以更新缓存。如果您的突变是不返回突变的数据,并且您有能力更改API,则可以考虑这样做,因为这样做也会有所帮助。