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

9 lines
210 B
Elixir

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