lib/functions/ilike.ex
defmodule AshSqlite.Functions.ILike do
@moduledoc """
Maps to the builtin sqlite function `ilike`.
"""
use Ash.Query.Function, name: :ilike
def args, do: [[:string, :string]]
end
defmodule AshSqlite.Functions.ILike do
@moduledoc """
Maps to the builtin sqlite function `ilike`.
"""
use Ash.Query.Function, name: :ilike
def args, do: [[:string, :string]]
end