Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
use by-name params in pagination example (#743)
Browse files Browse the repository at this point in the history
Refs: #728
  • Loading branch information
ElliotFriend authored Feb 22, 2024
1 parent 2491ed1 commit a939d4d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion api/pagination.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ For example, calling a method with pagination parameter set:
"jsonrpc": "2.0",
"id": "1",
"method": "exampleMethod",
"params": ["other", "arguments", { "cursor": "1234-1", "limit": 100 }]
"params": {
"some": "argument",
"pagination": {
"cursor": "1234-1",
"limit": 100
}
}
}
```

0 comments on commit a939d4d

Please sign in to comment.