ash_postgres/lib/functions/binding.ex

10 lines
173 B
Elixir
Raw Permalink Normal View History

defmodule AshPostgres.Functions.Binding do
@moduledoc """
Refers to the current table binding.
"""
use Ash.Query.Function, name: :binding
def args, do: [[]]
end