diff --git a/Relay-Pagination-example.md b/Relay-Pagination-example.md index 5fa24fa..d6b1cdd 100644 --- a/Relay-Pagination-example.md +++ b/Relay-Pagination-example.md @@ -15,12 +15,12 @@ In a nutshell, `pagination` is implemented via graphene relay's `Connection` and In addition to a `cursor` element within `edges` that will show you the cursor id for each element, like so: ```graphql - edges { - cursor - node { - - } - } +edges { + cursor + node { + + } +} ``` The basic implementation below provides the elements for cursor-based pagination that you'll need to do your thing in your code. Hope this helps.