Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 SPA 中有一个页面显示分页的结果列表。可以使用侧栏中的某些复选框来过滤此列表。
我想使用 Apollo 缓存来处理过滤器状态,然后在执行查询时检索这些数据并将它们用作查询的参数。
我什至不知道这样的事情是否可能,有人知道该怎么做吗?
我发现 Apollo 提供了一些 GraphQL 指令:@client和@export.
@client
@export
它基本上允许您在缓存中查询并将结果用作另一个查询的参数。
更多信息:https ://www.apollographql.com/docs/react/v2.5/essentials/local-state/#using-client-fields-as-variables