I have a class "posts" which has 10 instances. How to fetch and list all instances in this class using fauna-java library without using Paginate method?
I tried something like follows
client.query(Get(Class("posts")))
But couldn't able to achieve this.