Current section

Files

Jump to
ecto_paging lib ecto cursors.ex
Raw

lib/ecto/cursors.ex

defmodule Ecto.Paging.Cursors do
@moduledoc """
This module defines nested struct with cursors for `Ecto.Paging`.
"""
@doc """
This is struct for `Ecto.Paging` that holds cursors.
"""
defstruct starting_after: nil,
ending_before: nil
end