Uses of Class
com.morpheusdata.core.data.DataQuery
Packages that use DataQuery
Package
Description
-
Uses of DataQuery in com.morpheusdata.core
Methods in com.morpheusdata.core with parameters of type DataQueryModifier and TypeMethodDescriptionio.reactivex.rxjava3.core.Single<Long>Performs a query operation based on the filters set in theDataQueryobject passed and returns a simple total count of the results.default LongPerforms a query operation based on the filters set in theDataQueryobject passed and returns a simple total count of the results.default io.reactivex.rxjava3.core.Maybe<M>Performs a query operation on the database returning the first result as aMorpheusModelobject.default MPerforms a query operation on the database returning the first result as aMorpheusModelobject.io.reactivex.rxjava3.core.Observable<M>Performs a query operation on the database returning the results asMorpheusModelobjects.Performs a query operation on the database returning the results asMorpheusModelobjects.io.reactivex.rxjava3.core.Observable<I>MorpheusIdentityService.listIdentityProjections(DataQuery query) MorpheusSynchronousIdentityService.listIdentityProjections(DataQuery query) io.reactivex.rxjava3.core.Observable<Map>MorpheusDataQueryService.listOptions(DataQuery query) Performs a query operation on the database returning the results as Map objects typically containing keys of (name,value) for use in dropdown or type-ahead components within the UI.MorpheusSynchronousDataService.listOptions(DataQuery query) Performs a query operation on the database returning the results as Map objects typically containing keys of (name,value) for use in dropdown or type-ahead components within the UI.io.reactivex.rxjava3.core.Single<DataQueryResult>Performs a query operation on the database just likeMorpheusDataQueryService.list(DataQuery)with a query, but the result is no longer a stream of individualMorpheusModel.default DataQueryResultPerforms a query operation on the database just likeMorpheusDataQueryService.list(DataQuery)with a query, but the result is no longer a stream of individualMorpheusModel. -
Uses of DataQuery in com.morpheusdata.core.data
Subclasses of DataQuery in com.morpheusdata.core.dataModifier and TypeClassDescriptionclassThis is the an extension of theDataQueryto use to list data from aDatasetProviderMethods in com.morpheusdata.core.data that return DataQueryModifier and TypeMethodDescriptionDataQuery.withFilter(DataFilter dataFilter) A chainable filter method for applying an "==" operator filter given a property name and desired value to lookup.DataQuery.withFilter(String name, Object value) A chainable filter method for applying an "==" operator filter given a property name and desired value to lookup.DataQuery.withFilter(String name, String operator, Object value) A chainable filter method for applying an "==" operator filter given a property name and desired value to lookup.DataQuery.withFilters(DataFilter... filters) Appends a set of filters to the existing filters list.DataQuery.withFilters(Collection<DataFilter> filters) Appends a set of filters to the existing filters list.DataQuery.withFilters(Map<String, Object> filter) Appends a join key for data query optimization as well as marshalling from the database.Appends join keys for data query optimization as well as marshalling from the database.DataQuery.withJoins(Collection<String> joins) Appends join keys for data query optimization as well as marshalling from the database.DataQuery.withParameters(Map<String, Object> parameters) Sets the sort of the DataQueryDataQuery.withSort(String sort, DataQuery.SortOrder order) Sets the sort of the DataQuery -
Uses of DataQuery in com.morpheusdata.core.synchronous
Methods in com.morpheusdata.core.synchronous with parameters of type DataQueryModifier and TypeMethodDescriptiondefault LongPerforms a query operation based on the filters set in theDataQueryobject passed and returns a simple total count of the results.default MPerforms a query operation on the database returning the first result as aMorpheusModelobject.Performs a query operation on the database returning the results asMorpheusModelobjects.MorpheusSynchronousDataQueryService.listOptions(DataQuery query) Performs a query operation on the database returning the results as Map objects typically containing keys of (name,value) for use in dropdown or type-ahead components within the UI.default DataQueryResultPerforms a query operation on the database just likeMorpheusDataQueryService.list(DataQuery)with a query, but the result is no longer a stream of individualMorpheusModel.