ash_postgres/lib/functions/ilike.ex
2024-02-07 14:45:34 -05:00

9 lines
213 B
Elixir

defmodule AshPostgres.Functions.ILike do
@moduledoc """
Maps to the builtin postgres function `ilike`.
"""
use Ash.Query.Function, name: :ilike, predicate?: true
def args, do: [[:string, :string]]
end