Current section
Files
Jump to
Current section
Files
lib/tempus/ecto/query_api/composite.ex
if Code.ensure_loaded?(Ecto.Query.API) do
defmodule Tempus.Ecto.Query.API.Composite do
@moduledoc false
@behaviour Tempus.Ecto.Query.API
defmacro slot_from(field),
do: quote(do: fragment("slot_from(?)", unquote(field)))
defmacro slot_to(field),
do: quote(do: fragment("slot_to(?)", unquote(field)))
end
end