Add example for Pagination in Java Code

deepakjois commented :

There is no builtin support for pagination. So you will have to write your own helper methods to handle pagination, which construct the query for specifying page sizes and offsents.

The Dgraph Java client follows the official Go client closely, which is quite minimal does not have any additional helpers for handling pagination. The Java client will support any such functionality only if the Go client supports it as well.