lib/functions/like.ex
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
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