- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在开发一个 react 应用程序,它使用 GraphQL 后端并具有额外的本地状态。我正在使用解析器来解析随时间变化的本地字段,但解析器只触发一次。
如果本地字段发生更改,我尝试使用 cache.readQuery 重新运行查询,但它似乎没有按我预期的那样工作。
export const resolvers = {
Query: {
resolvedDevice: (obj, args, { cache }, info) => {
const data = cache.readQuery({
query: gql`
query {
selectedDevice @client
}
`
});
// do stuff with the data
}
},
Mutation: {
selectDevice: (_, { id }, { cache }) => {
cache.writeData({ data: { selectedDevice: id } });
}
}
};
const query = gql`
query GetResolvedDevice {
resolvedDevice @client
}
`;
const ModalContainer = props => {
const { loading, error, data } = useQuery(query);
if (loading || error) {
return null;
}
return (
<Modal
device={data.resolvedDevice}
/>
);
};
export const SELECT_DEVICE = gql`
mutation SelectDevice($id: String!) {
selectDevice(id: $id) @client
}
`;
const DevicesNoGeoContainer = () => {
const [selectDevice] = useMutation(SELECT_DEVICE);
return (
<DevicesNoGeo
onGeoClick={id => {
selectDevice({ variables: { id } });
}}
/>
);
};
最佳答案
当缓存中的值发生变化时,Apollo 知道更新从缓存中提取字段的观察查询。在这种情况下,查询中的字段由本地解析器代替。这意味着 Apollo 没有缓存条目来订阅和响应该特定查询。因此,第一个查询已完成,除非您使用 refetch
显式触发它,否则您将不会获得查询的任何更新。上钩结果。
我们寻求解决此问题的一种方法是在缓存中“持久化”派生字段并在组件查询中使用缓存实现字段。我们可以通过显式观察源字段( selectedDevice
)并在处理程序中将派生字段( resolvedDevice
)写回缓存来做到这一点(我将继续使用您的字段名称,尽管您可能会考虑重命名它如果你走这条路线,因为它似乎以它的定义方式命名)。
概念验证
export const resolvers = {
Mutation: {
selectDevice: (_, { id }, { cache }) => {
cache.writeData({ data: { selectedDevice: id } });
}
}
};
const client = new ApolloClient({
resolvers
});
const sourceQuery = gql`
query {
selectedDevice @client
}`;
// watch the source field query and write resolvedDevice back to the cache at top-level
client.watchQuery({ query: sourceQuery }).subscribe(value =>
client.writeData({ data: { resolvedDevice: doStuffWithTheData(value.data.selectedDevice) } });
const query = gql`
query GetResolvedDevice {
resolvedDevice @client
}
`;
watchQuery
存在于缓存中,每次更改都会调用您的处理程序,并且我们会将派生字段写入缓存作为响应。
resolvedDevice
现在存在于缓存中,正在查询它的组件现在将在它更改时获取更新(这将是每当“upteam”
selectedDevice
字段更改时)。
export const derivedFields: {
resolvedDevice: {
fulfill: () => client.watchQuery({ query: sourceQuery }).subscribe(value =>
client.writeData({ data: { resolvedDevice: doStuffWithTheData(value.data.selectedDevice),
}
};
import { derivedFields } from './the-file-above';
export const withResolvedField = field => RenderingComponent => {
return class ResolvedFieldWatcher extends Component {
componentDidMount() {
this.subscription = derivedFields[field].fulfill();
}
componentDidUnmount() {
// I don't think this is actually how you unsubscribe, but there's
// some way to do it
this.subscription.cancel();
}
render() {
return (
<RenderingComponent {...this.props } />
);
}
};
};
export default withDerivedField('resolvedDevice')(ModalContainer);
关于reactjs - Apollo 客户端解析器仅触发一次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58202011/
有没有全局loading react-apollo 客户端在任何地方都可以使用标志吗?我有一个“页面包装器”组件,我想在所有子组件都收到它们的数据后应用 ui 效果。 我已经使用 redux 设置了
我试图通过 React 了解 Apollo。如何将状态添加到我本地的 Apollo 商店? 我正在使用 meteor 。它在客户端提供了一个功能来测试用户是否登录并返回他们的 id 如果他们是 Met
我有一个关于 cacheRedirects 的问题在 Apollo 中,我有项目概览和详细 View 。我希望将 detailview 缓存重定向到概览中的一个项目(如文档中的 the book ex
我们可以使用查询和变异向服务器发出一些请求。在这些查询中,我们可以传递一些参数,并且在这两种情况下我们都会从服务器获得一些结果。唯一的一个强制性区别是,我们可以从 props 中调用突变,例如“thi
我正在使用 @apollo/client 实现,但我没有看到任何完整的 @apollo/client 示例与 react . 如果我搜索,我会得到示例 apollo-client和 apollo bo
我正在使用 apollo-client、apollo-link 和 react-apollo,我想完全禁用缓存,但不知道该怎么做。 我看了apollo-cache-inmemory的来源,它有一个 c
我正在构建基于 JWT 的身份验证系统. JWT已过期。当JWT过期,我 catch JWT使用 apollo-link-error 的过期错误.我想调用 apolloClient.resetStor
Apollo 文档 discusses the use of cacheRedirects 告诉 Apollo 如何从其他查询访问缓存中的数据。 它给出了一个例子: In some cases, a
react-apollo的Query组件可以使用Recompose吗? ? https://www.apollographql.com/docs/react/essentials/queries.ht
我正在尝试从“ apollo-server”更新:“^2.9.4”和 “阿波罗服务器 express ” :“^2.9.4”到 2.12.0 版本 在 typescript 中,在应用程序的构建过程中
http://dev.apollodata.com/react/mutations.html 我正在尝试使用 optimisticResponse,但我很困惑...无法让它在我的本地运行。 我的问题是
我正在制作一个社交网站。当任何用户在站点上更新或创建新内容时,我需要查看站点的任何其他用户来查看更改更新。 我有一些需要低延迟的评论,因此建议为此订阅。 我也有事件,但这些不需要这么低的延迟。每 10
我在一个简单的 React 应用程序中使用最新版本的 Apollo Client,我试图从用于显示返回的记录集大小的响应中提取 header 值。 我很欣赏这不是提供结果集大小的最优雅的方式,但这就是
我想在突变后使用乐观 UI 更新:https://www.apollographql.com/docs/react/basics/mutations.html 我对“乐观响应”和“更新”之间的关系感到
在 Apollo 服务器中,当客户端用户订阅订阅(使用 WebSocket)时,我们可以使用订阅解析器检测到这一点。 但是有没有办法检测取消订阅? 我看到 WebSocket 发送了一个 {"id":
我创建这个问题是为了防止有人对如何在 Apollo 中添加 union/多态类型感到好奇。希望这会让他们更容易。 在此示例中,我希望响应为 Worksheet 或 ApiError // typede
我的项目目录结构是这样的: - schema.graphql - package.json - packages -- types --- package.json --- src ---- grap
我想知道当订阅接收到新数据时是否有一种优雅的方式来触发react-apollo中查询的重新获取(数据在这里并不重要,将与前一个相同)。我只是在这里使用订阅作为通知触发器,告诉 Query 重新获取。
我使用 Apollo、React 和 Graphcool。我有一个查询来获取登录的用户 ID: const LoginServerQuery = gql` query LoginServerQ
出于分析目的,我想跟踪所有 graphql 操作的客户端(包括 @client 操作)。我无法在 API 中找到合适的选项,想知道这在 apollo 客户端级别是否可行,或者我是否需要引入一些代理来拦
我是一名优秀的程序员,十分优秀!