ash_sqlite/lib/functions/like.ex

10 lines
188 B
Elixir
Raw Normal View History

2023-09-23 14:52:22 +12:00
defmodule AshSqlite.Functions.Like do
@moduledoc """
Maps to the builtin sqlite function `like`.
"""
use Ash.Query.Function, name: :like
def args, do: [[:string, :string]]
end