Our app uses Algolia for searching which allows for two typical forms of pagination: by page page=3&hitsPerPage=5
or by offset offset=10&length=5
GraphQL preferences cursor-based pagination where a recordID and length are provided friendsConnection(first:5 after:"Y3Vyc29yMQ==")
Is there anyway to translate info from a cursor-based pagination request into a page or offset pagination request?