我不能做loadMore因为hasMore()总是返回false,即使hasNextPage为true?

时间:2017-06-22 16:56:56

标签: reactjs graphql relayjs relay

我不知道为什么我的loadMore不起作用,这是我的分页代码:

   todos(first: $count # count is default to 2
        ) @connection(key: "TodoList_todos") { #
          edges {
            cursor
            node {
              id,
              complete,
              ...Todo_todo,
            }
          }
           pageInfo {
              endCursor
              hasNextPage
              hasPreviousPage
              startCursor
           }

当hasNextPage返回true时,为什么我的hasMore()会返回false?我该如何解决?

1 个答案:

答案 0 :(得分:1)

您是否设置了getConnectionFromProps?
可能需要像props.todos。

app:background ="@drawable/selector"