我怎样才能让 apollo-module 在查询参数更新时自动重新获取查询
How can I have apollo-module automatically refetch queries on query param updates
我最近从手动调用我的 Hasura 客户端转为使用 Apollo-module。
我在@Component下添加了这个
apollo: {
features: {
query: gql`query { features { id, name } }`
},
tenants: {
query: gql`query { tenants { id, name } }`
},
listings: {
query () {
return gql`${(this as any).buildListingsQuery()}`
},
prefetch: true
}
}
但是它只在页面加载时获取数据,然后当查询更改时数据丢失,我必须手动重新获取它们造成延迟,加载选项也丢失所以我也不能使用那个.任何线索都会有所帮助,谢谢
对于遇到类似问题的任何人,我已通过使用网络获取策略解决了这个问题。我加了
fetchPolicy: 'network-only'
我最近从手动调用我的 Hasura 客户端转为使用 Apollo-module。
我在@Component下添加了这个
apollo: {
features: {
query: gql`query { features { id, name } }`
},
tenants: {
query: gql`query { tenants { id, name } }`
},
listings: {
query () {
return gql`${(this as any).buildListingsQuery()}`
},
prefetch: true
}
}
但是它只在页面加载时获取数据,然后当查询更改时数据丢失,我必须手动重新获取它们造成延迟,加载选项也丢失所以我也不能使用那个.任何线索都会有所帮助,谢谢
对于遇到类似问题的任何人,我已通过使用网络获取策略解决了这个问题。我加了
fetchPolicy: 'network-only'