ash_postgres/lib/functions/like.ex
2022-12-21 16:12:49 -05:00

9 lines
192 B
Elixir

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