View Source Ash.Page.Offset (ash v2.5.10)

A page of results from offset based pagination.

If a resource supports keyset pagination as well, it will also have the keyset metadata.

Link to this section Summary

Link to this section Types

@type t() :: %Ash.Page.Offset{
  count: term(),
  limit: term(),
  more?: term(),
  offset: term(),
  rerun: term(),
  results: term()
}

Link to this section Functions

Link to this function

new(results, count, original_query, more?, opts)

View Source