All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.bwaldvogel.mongo.repository.TestRepository Maven / Gradle / Ivy

There is a newer version: 1.45.0
Show newest version
package de.bwaldvogel.mongo.repository;

import org.springframework.data.mongodb.repository.CountQuery;
import org.springframework.data.mongodb.repository.MongoRepository;

import de.bwaldvogel.mongo.entity.TestEntity;

public interface TestRepository extends MongoRepository {

    @CountQuery(value = "{'value.data': '?0'}")
    int countByValueData(String data);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy