rest-query-engine
rest-query-engine copied to clipboard
A library for adding queryability to java-based REST APIs
This error occurs when predicatevisitor is used as the visitor of AST ```java Predicate predicate = condition.query(new PredicateVisitor()); ``` I have a collection like this ```json [ { "_id": "604da82b13b1687602fd97e5",...
Hello, First of all, Big thanks for this magic framework, I used it for MongoDB, It's work probably. I need your help to use it in the Elastic search. `...
hi, i want to use date limit query such as createTime>='2017.05.14', when i use it, they always to display following error, the "createTime" is date formate in mongodb. `Failed to...
if(rsql != null) { QueryConversionPipeline pipeline = QueryConversionPipeline.defaultPipeline(); Condition condition = pipeline.apply(rsql, Notification.class); Criteria criteria = condition.query(new MongoVisitor()); query.addCriteria(criteria); } Suppose you have a class Notification.class with a field: private...
It would be fine to have the possibility to search case insensitive within mongodb. At this time a query like this is needed to include lower case words: `title=re=.*Bluetooth.* or...
How to work with ObjectId and LocalDateTime
Attempting to use rsql-parser with Mongodb (minimal use of Spring). Have q-builders-1.6 rsql-parser-2.1.0 spring-data-mongodb-1.10.4.RELEASE That combination lacks QueryConversionPipeline and my code (below) will not compile. Using q-builders-1.6 rest-query-engine-0.7.1 spring-data-mongodb-1.10.4.RELEASE there...
It would be fine if the query engine would also support the mongodb text operator. https://docs.mongodb.com/manual/reference/operator/query/text/
Hi, This library is awesome 👍 . It would be nice to have to these two features : 1. sort(
Currently queries are always parsed into the GenericQueryBuilder instance, but it's plausible that after parsing the incoming query into a builder you want to continue to add additional filters (like...