我对阿波罗fetchMore
方法的理解有疑问。我是这个工具的新手,文档中的示例对我来说太复杂了。我在互联网上搜索,但找不到更多(当前)示例。你能帮我写一个无限加载数据的最简单的例子吗?我有这个代码:
const productInfo = gql`
query {
allProducts {
id
name
price
category {
name
}
}
}`
const ProductsListData = graphql(productInfo)(ProductsList)
每次点击“加载更多”按钮后,我想获取 5 个产品和 5 个更多产品。我理解这个的想法 - 光标等,但我不知道如何实现它。(我正在使用反应)