Uses of Class
io.stargate.sdk.doc.Document
Packages that use Document
-
Uses of Document in io.stargate.sdk.doc
Methods in io.stargate.sdk.doc that return types with arguments of type DocumentModifier and TypeMethodDescriptionCollectionClient.findAll()This function will retrieve all documents in the Collection without any mapping.CollectionClient.findAll(RecordMapper<DOC> documentMapper) This function will retrieve all documents in the Collection providing a custom mapping logic.Find all document matching the query.CollectionClient.findAll(Query query, RecordMapper<DOC> documentMapper) Find all document matching the query.Find all document matching the query.This function will retrieve all documents in the Collection with automatic marshalling (jackson).StargateDocumentRepository.findAll()Retrieve all documents from the collection.Search document based on a search queryCollectionClient.findPage()Search for a page (without marshalling).CollectionClient.findPage(RecordMapper<DOC> documentMapper) Find a page and marshall using a mapper.CollectionClient.findPage(PageableQuery query) Find a page given some search (without marshalling the documents).CollectionClient.findPage(PageableQuery query, RecordMapper<DOC> documentMapper) Find a page and marshall using a mapper.CollectionClient.findPage(PageableQuery query, Class<DOC> beanClass) Find a page given some search.Default query, find first page.CollectionClient.PageSupplier.findPage(CollectionClient cc, PageableQuery q) Get a pageStargateDocumentRepository.findPage(PageableQuery query) Search document with attributes.