# SPDX-FileCopyrightText: 2019 ash_postgres contributors # # SPDX-License-Identifier: MIT defmodule AshPostgres.Functions.Like do @moduledoc """ Maps to the builtin postgres function `like`. """ use Ash.Query.Function, name: :like, predicate?: true def args, do: [[:string, :string]] end