listAll

@CheckReturnValue
@GenerateBridge
open fun listAll(): Uni<List<Entity>>

Find all entities of this type. This method is a shortcut for findAll().list().

Return

a List containing all results, without paging

See also


@CheckReturnValue
@GenerateBridge
open fun listAll(sort: Sort): Uni<List<Entity>>

Find all entities of this type, in the given order. This method is a shortcut for findAll(sort).list().

Return

a List containing all results, without paging

See also

Parameters

sort

the sort order to use