I am querying an index that lists documents from a collection based on the the epoch time and a unique constraint.
If I want to retrieve a list of the latest 80 documents I am using the following query:
result = client.query(
q.paginate(
q.reverse(
q.match(
q.index("Epoch_Index"))), size=80)
)
How do I retrieve the 80th document only without using the ‘size=80’ command and parsing the results? Surely there is a more fauna-tic way to achieve this?
Thank you.