stream
Find entities matching a query, with optional indexed parameters. This method is a shortcut for find(query, params).stream().
Return
a Stream containing all results, without paging
Parameters
a query string
optional sequence of indexed parameters
See also
Find entities matching a query and the given sort options, with optional indexed parameters. This method is a shortcut for find(query, sort, params).stream().
Return
a Stream containing all results, without paging
Parameters
a query string
the sort strategy to use
optional sequence of indexed parameters
See also
Find entities matching a query, with named parameters. This method is a shortcut for find(query, params).stream().
Return
a Stream containing all results, without paging
Parameters
a query string
Map of named parameters
See also
Find entities matching a query and the given sort options, with named parameters. This method is a shortcut for find(query, sort, params).stream().
Return
a Stream containing all results, without paging
Parameters
See also
Find entities matching a query, with named parameters. This method is a shortcut for find(query, params).stream().
Return
a Stream containing all results, without paging
Parameters
a query string
Parameters of named parameters
See also
Find entities matching a query and the given sort options, with named parameters. This method is a shortcut for find(query, sort, params).stream().
Return
a Stream containing all results, without paging
Parameters
a query string
the sort strategy to use
Parameters of indexed parameters
See also
Find entities using a BSON query. This method is a shortcut for find(query).stream().
Return
a Stream containing all results, without paging
Parameters
a Document query
See also
Find entities using a BSON query and a BSON sort. This method is a shortcut for find(query, sort).stream().
Return
a Stream containing all results, without paging
Parameters
a Document query
the Document sort