A library for adding arbitrarily flexible querying to any java API. Almost all APIs deal with some set of predefined models which they expose via various endpoints. You shouldn't have to create your own mechanisms for querying against collections of these models and then figuring out how to make that query work against wherever you're storing it.
This common problem is where RQE comes in. Using RQE you send your queries across HTTP as a simple query parameter using the so-simple-you-feel-stupid query language rsql. This library handles everything necessary to parse that incoming query, convert the various arguments in the query into the type that will actually appear in the database, and build an intermediate query tree that can be visited to produce a query for any number of backends.
Pretty much all of the components involved to parse, traverse, and convert all use pluggable implementations. As this library matures I'll document all the extension points and why you might use them.
This library builds queries into the intermediate form understood by q-builders. This means that any backend which is supported via q-builders is also supported by this library. Currently those include:
- Java Predicate
- RSQL Query String
- Elasticsearch QueryBuilder
- Spring Data Mongodb Criteria
Do you provide a Java-based SDK for your API? Or do you send real rest requests in your test suite? Then you'll probably be interested in using q-builders on the client side too. Since RSQL is a supported target of the intermediate representation you can use it to construct your queries for the API in a type and typo safe way.
private QueryConversionPipeline pipeline = QueryConversionPipeline.defaultPipeline();
@Test
public void mongo() {
Condition<GeneralQueryBuilder> condition = pipeline.apply("firstName==Paul;age==30", User.class);
Criteria query = condition.query(new MongoVisitor());
}
@Test
public void elasticsearch() {
Condition<GeneralQueryBuilder> condition = pipeline.apply("firstName==Paul;age==30", User.class);
QueryBuilder query = condition.query(new ElasticsearchVisitor());
}
@Test
public void predicate() {
Condition<GeneralQueryBuilder> condition = pipeline.apply("firstName==Paul;age==30", User.class);
Predicate<User> predicate = condition.query(new PredicateVisitor<>());
}
<dependencies>
<dependency>
<groupId>com.github.rutledgepaulv</groupId>
<artifactId>rest-query-engine</artifactId>
<version>0.7.1</version>
</dependency>
</dependencies>
<dependencies>
<dependency>
<groupId>com.github.rutledgepaulv</groupId>
<artifactId>rest-query-engine</artifactId>
<version>0.7.2-SNAPSHOT</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>ossrh</id>
<name>Repository for snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<!-- only necessary if you're using the spring data mongodb criteria target type -->
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb</artifactId>
<version>1.9.2.RELEASE</version>
</dependency>
<!-- only necessary if you're using the elasticsearch filter builder target type -->
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>2.3.4</version>
</dependency>
</dependencies>
This project is licensed under MIT license.