trgoofi opened DATAMONGO-2563 and commented
Using SpringDataMongodbQuery could do a nice fluent Querydsl query like this
query = new SpringDataMongodbQuery<>(mongoOps, entityClass);
query.where(Q.name.eq(n)).orderBy(Q.name.asc()).offset(5).limit(10).fetch();
For the moment there seems be a missing piece is that projection is not supported
No further details from DATAMONGO-2563