I have this query to execute from my application against a full text search couchbase index :
BooleanQuery booleanQuery = buildQuery(params);
SearchQuery searchQuery = new SearchQuery(
"index_name",
booleanQuery
).sort("createionDateTime")
.limit(10);
How to specify sort direction for createionDateTime ?
Thanks for your help