Uses of Class
io.stargate.sdk.data.domain.query.SelectQuery
Packages that use SelectQuery
Package
Description
Core Data API Client Classes.
Specialized classes to perform queries
-
Uses of SelectQuery in io.stargate.sdk.data
Methods in io.stargate.sdk.data with parameters of type SelectQueryModifier and TypeMethodDescriptionCollectionClient.find(SelectQuery query) Search records with a filter<DOC> Stream<DocumentResult<DOC>> CollectionClient.find(SelectQuery pageQuery, DocumentResultMapper<DOC> mapper) Search records with a filter<DOC> Stream<DocumentResult<DOC>> CollectionClient.find(SelectQuery query, Class<DOC> clazz) Search records with a filterCollectionRepository.find(@NonNull SelectQuery query) Find by id.CollectionClient.findOne(SelectQuery query) Find one document matching the query.<DOC> Optional<DocumentResult<DOC>> CollectionClient.findOne(SelectQuery query, DocumentResultMapper<DOC> mapper) Find one document matching the query.<DOC> Optional<DocumentResult<DOC>> CollectionClient.findOne(SelectQuery query, Class<DOC> clazz) Find one document matching the query.CollectionClient.findPage(SelectQuery query) Find documents matching the query.<DOC> Page<DocumentResult<DOC>> CollectionClient.findPage(SelectQuery query, DocumentResultMapper<DOC> mapper) Find documents matching the query.<DOC> Page<DocumentResult<DOC>> CollectionClient.findPage(SelectQuery query, Class<DOC> clazz) Find documents matching the query.CollectionClient.findVectorPage(SelectQuery query) find Page.CollectionRepository.search(SelectQuery query) Find all item in the collection.CollectionRepository.searchPage(SelectQuery query) Find a page in the collection. -
Uses of SelectQuery in io.stargate.sdk.data.domain.query
Methods in io.stargate.sdk.data.domain.query that return SelectQueryModifier and TypeMethodDescriptionSelectQueryBuilder.build()Terminal call to build immutable instance ofSelectQuery.static SelectQueryBuild the find by id requeststatic SelectQuerySelectQuery.findByVector(float[] vector) Build the find by vector requeststatic SelectQuerySelectQuery.findWithFilter(Filter filter) Build the find by vector request