use of io.github.zutherb.appstash.shop.repository.product.model.ProductQuery in project the-app by devops-dojo.
the class ProductRepositoryImpl method findByQuery.
@Override
public Product findByQuery(ProductQuery productQuery) {
Query query = new Query();
ProductQueryUtils.applyCriterias(query, productQuery);
return mongoOperations.findOne(query, Product.class);
}
Aggregations