Sorting and querying documents in couchbase-lite

Thanks jens. It works… Now this is what my query looks like :-

    View view = getView("receiving_view");
    Query query = view.createQuery();

    query.setStartKey(Arrays.asList("81fb1a79526f4e2bdc77aa7d73d"));
    query.setEndKey(Arrays.asList("81fb1a79526f4e2bdc77aa7d73d", new HashMap<String, Object>()));
    query.run();