中继或 Apollo-react 如何解决涉及多个关系的突变
Posted
技术标签:
【中文标题】中继或 Apollo-react 如何解决涉及多个关系的突变【英文标题】:How does relay or Apollo-react solve mutations that involve multiple relationships 【发布时间】:2017-08-10 10:03:51 【问题描述】:假设我在一个页面上有一个具有这些功能的反应应用程序: 新书, 作者 xyz 的书籍, 创建新书
现在假设我创建了作者 xyz 的新书。页面更新了两处,多了一本新书,又多了一本作者xyz的书。
apollo-react 和 relay 在解决此问题的方法上有何不同?他们如何解决这个问题?我看到的大多数例子只显示了基本的突变
【问题讨论】:
【参考方案1】:以下是在 Apollo 中解决此问题的方法。
假设我们正在为这部分 UI 使用以下查询:
query AllBooks
newBooks
title
author name
author(id: "stubailo")
id
books
title
当然,实际上你可能会有一些分页、变量等。但对于这个例子,我将只使用一些简单的东西。
现在,让我们编写一个突变来创建那本新书,它可能看起来像:
mutation CreateBook($book: BookInput!)
createBook(book: $book)
title
author name
现在,我们在 Apollo 中有两个主要选项来处理这个问题。
第一种选择是简单地重新获取整个查询:
client.mutate(CreateBookMutation,
variables: book: newBook ,
refetchQueries: [ query: AllBooksQuery ],
)
这是简单而有效的,但如果由于某种原因查询结果的计算成本非常高,则可能效率不高。
第二种选择是通过更新整个查询结果来合并结果。您可以使用updateQueries,但最近引入的最新方法是使用update
回调与new imperative write API:
client.mutate(CreateBookMutation,
variables: book: newBook ,
update: (proxy, mutationResult) =>
// Get data we want to update, in the shape of the query
const data = proxy.readQuery( query: AllBooksQuery );
// It's fine to mutate here since this is a copy of the data
data.newBooks.push(mutationResult.createBook);
data.author.books.push(mutationResult.createBook);
// Write the query back to the store with the new items
proxy.writeQuery( query: AllBooksQuery, data );
,
)
如您所见,使用 GraphQL 来保持 UI 更新并不比其他数据加载解决方案更容易。 API 没有为您提供有关新数据应该去哪里的太多信息,因此您必须告诉 Apollo 如何处理它。
值得注意的是,这仅适用于添加和删除项目 - 自动更新现有项目。
【讨论】:
你知道relay是否使用类似的概念来解决关系的增删改查? 在 Relay 中,您使用“mutator configs”:facebook.github.io/relay/docs/…以上是关于中继或 Apollo-react 如何解决涉及多个关系的突变的主要内容,如果未能解决你的问题,请参考以下文章