ash_postgres/lib/functions/like.ex

10 lines
192 B
Elixir
Raw Normal View History

2022-12-22 10:12:49 +13:00
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