()
| 74 | if p.pages <= 1 { |
| 75 | p.pages = 1 |
| 76 | p.nextPage = nextPage |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | func (p *listPaging) hasMore() bool { |
| 81 | return p.nextPage != "" |
| 82 | } |
| 83 | |
| 84 | // loadMoreThreshold is how close to the bottom of a list the cursor comes before the next |
no outgoing calls