View Source Ash.Page.Offset (ash v3.4.47)
A page of results from offset
based pagination.
If a resource supports keyset
pagination as well,
it will also have the keyset
metadata.
Summary
Functions
Creates a new Ash.Page.Offset.t()
.
Types
@type page_opts() :: [ offset: page_opts_opts(), limit: page_opts_opts(), filter: page_opts_opts(), count: page_opts_opts() ]
@type page_opts_opts() :: [type: page_opts_type(), doc: String.t()]
@type page_opts_type() :: :non_neg_integer | :pos_integer | :any | :boolean
@type t() :: %Ash.Page.Offset{ count: integer(), limit: integer(), more?: boolean(), offset: integer(), rerun: {Ash.Query.t(), Keyword.t()}, results: [Ash.Resource.record()] }
Functions
@spec new( [Ash.Resource.record()], non_neg_integer(), Ash.Query.t(), boolean(), Keyword.t() ) :: t()
Creates a new Ash.Page.Offset.t()
.