lib/functions/like.ex

defmodule AshPostgres.Functions.Like do
  @moduledoc """
  Maps to the builtin postgres function `like`.
  """

  use Ash.Query.Function, name: :like

  def args, do: [[:string, :string]]
end