find

inline fun <T : Any> DataCache.find(block: QueryBuilder<T>.() -> Unit = {}): Query<T>
inline fun <T : Any> DataEntryCache<T>.find(block: QueryBuilder<T>.() -> Unit = {}): Query<T>

Deprecated

use query instead

Replace with

query<T>(block)

Creates a new Query configured with the block.