Interface InventoryRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<Inventory,java.lang.String>
,org.springframework.data.mongodb.repository.MongoRepository<Inventory,java.lang.String>
,org.springframework.data.repository.PagingAndSortingRepository<Inventory,java.lang.String>
,org.springframework.data.repository.query.QueryByExampleExecutor<Inventory>
,org.springframework.data.repository.Repository<Inventory,java.lang.String>
@Repository public interface InventoryRepository extends org.springframework.data.mongodb.repository.MongoRepository<Inventory,java.lang.String>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<Inventory>
findAllBySellerSku(java.util.Set<java.lang.String> sellerSkuIds)
-
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAllById, findById, save
-
Methods inherited from interface org.springframework.data.mongodb.repository.MongoRepository
findAll, findAll, findAll, findAll, insert, insert, saveAll
-
-
-
-
Method Detail
-
findAllBySellerSku
@Query("{ \'embeddedSellerSKU.id\' : { $in : ?0 } }") java.util.List<Inventory> findAllBySellerSku(java.util.Set<java.lang.String> sellerSkuIds)
-
-