Peek.2021-07-06.11-17.mp4
PR for using cursor based pagination for fetching apps.
- Dealt with a lot of pagination methods on Urql
- Follows Relay Cursor Connections Specification
- We recommend to Urql users
- High adoption
- Covers basically all use cases (e.g. Github comments)
- Wrote up different use cases for cursor based pagination - link
- Previously wrote series on matching the spec to DynamoDB cursors - link
Before:
- Fetch all JS on the site
- Wait for it all to load
- Render
After:
- Fetch initial routing/auth js
- Fetch js for target route
- Render
Updated designs (courtesy of Chris)