use of org.jnosql.diana.api.document.DocumentQuery in project jnosql-diana-driver by eclipse.
the class QueryAQLConverterTest method shouldRunEqualsQueryLimit.
@Test
public void shouldRunEqualsQueryLimit() {
DocumentQuery query = select().from("collection").where("name").eq("value").limit(5).build();
AQLQueryResult convert = QueryAQLConverter.select(query);
String aql = convert.getQuery();
Map<String, Object> values = convert.getValues();
assertEquals("value", values.get("name"));
assertEquals("FOR c IN collection FILTER c.name == @name LIMIT 5 RETURN c", aql);
}
use of org.jnosql.diana.api.document.DocumentQuery in project jnosql-diana-driver by eclipse.
the class QueryAQLConverterTest method shouldRunEqualsQuery.
@Test
public void shouldRunEqualsQuery() {
DocumentQuery query = select().from("collection").where("name").eq("value").build();
AQLQueryResult convert = QueryAQLConverter.select(query);
String aql = convert.getQuery();
Map<String, Object> values = convert.getValues();
assertEquals("value", values.get("name"));
assertEquals("FOR c IN collection FILTER c.name == @name RETURN c", aql);
}
use of org.jnosql.diana.api.document.DocumentQuery in project jnosql-diana-driver by eclipse.
the class DefaultElasticsearchDocumentCollectionManager method delete.
@Override
public void delete(DocumentDeleteQuery query) throws NullPointerException {
requireNonNull(query, "query is required");
query.getCondition().orElseThrow(() -> new IllegalArgumentException("condition is required"));
DocumentQuery select = new ElasticsearchDocumentQuery(query);
List<DocumentEntity> entities = select(select);
if (entities.isEmpty()) {
return;
}
BulkRequest bulk = new BulkRequest();
entities.stream().map(entity -> entity.find(ID_FIELD).get().get(String.class)).map(id -> new DeleteRequest(index, query.getDocumentCollection(), id)).forEach(bulk::add);
try {
client.bulk(bulk);
} catch (IOException e) {
throw new ElasticsearchException("An error to delete entities on elasticsearch", e);
}
}
use of org.jnosql.diana.api.document.DocumentQuery in project jnosql-diana-driver by eclipse.
the class DefaultElasticsearchDocumentCollectionManagerAsync method delete.
@Override
public void delete(DocumentDeleteQuery query, Consumer<Void> callBack) {
requireNonNull(query, "query is required");
requireNonNull(callBack, "callBack is required");
query.getCondition().orElseThrow(() -> new IllegalArgumentException("condition is required"));
DocumentQuery select = new ElasticsearchDocumentQuery(query);
List<DocumentEntity> entities = EntityConverter.query(select, client, index);
if (entities.isEmpty()) {
callBack.accept(null);
return;
}
BulkRequest bulk = new BulkRequest();
entities.stream().map(entity -> entity.find(ID_FIELD).get().get(String.class)).map(id -> new DeleteRequest(index, query.getDocumentCollection(), id)).forEach(bulk::add);
ActionListener<BulkResponse> listener = new ActionListener<BulkResponse>() {
@Override
public void onResponse(BulkResponse bulkItemResponses) {
callBack.accept(null);
}
@Override
public void onFailure(Exception e) {
throw new ExecuteAsyncQueryException("An error when delete on elasticsearch", e);
}
};
client.bulkAsync(bulk, listener);
}
use of org.jnosql.diana.api.document.DocumentQuery in project jnosql-diana-driver by eclipse.
the class DocumentQueryTest method shouldShouldDefineLimit.
@Test
public void shouldShouldDefineLimit() {
DocumentEntity entity = DocumentEntity.of("person", asList(Document.of("_id", "id"), Document.of("name", "name")));
Document name = entity.find("name").get();
DocumentQuery query = select().from(COLLECTION_NAME).where(name.getName()).eq(name.get()).limit(2L).build();
List<DocumentEntity> entities = entityManager.select(query);
assertEquals(2, entities.size());
}
Aggregations