Package com.skava.marketplace.repository
Interface AppInstallSummaryRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<AppInstallSummary,
,String> org.springframework.data.repository.ListCrudRepository<AppInstallSummary,
,String> org.springframework.data.repository.ListPagingAndSortingRepository<AppInstallSummary,
,String> org.springframework.data.mongodb.repository.MongoRepository<AppInstallSummary,
,String> org.springframework.data.repository.PagingAndSortingRepository<AppInstallSummary,
,String> org.springframework.data.repository.query.QueryByExampleExecutor<AppInstallSummary>
,org.springframework.data.querydsl.QuerydslPredicateExecutor<AppInstallSummary>
,org.springframework.data.repository.Repository<AppInstallSummary,
String>
public interface AppInstallSummaryRepository
extends org.springframework.data.mongodb.repository.MongoRepository<AppInstallSummary,String>, org.springframework.data.querydsl.QuerydslPredicateExecutor<AppInstallSummary>
-
Method Summary
Modifier and TypeMethodDescriptionfindByAppId
(String appId) findByAppIdAndAppVersion
(String appId, String appVersion) findByAppIdIn
(List<String> appId, org.springframework.data.domain.Sort sort) findByDateBetweenAndAppIdIn
(Date fromDate, Date toDate, List<String> appId) Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save
Methods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAll
Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAll
Methods inherited from interface org.springframework.data.mongodb.repository.MongoRepository
findAll, findAll, insert, insert
Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAll
Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
Methods inherited from interface org.springframework.data.querydsl.QuerydslPredicateExecutor
count, exists, findAll, findAll, findAll, findAll, findAll, findBy, findOne
-
Method Details
-
findByAppIdIn
ArrayList<AppInstallSummary> findByAppIdIn(List<String> appId, org.springframework.data.domain.Sort sort) -
findByAppId
-
findByDateBetweenAndAppIdIn
-
findByAppIdAndAppVersion
@Query("{ \'appId\' : ?0, \'appVersion\' : ?1}") ArrayList<AppInstallSummary> findByAppIdAndAppVersion(String appId, String appVersion)
-