fix: string goes before ci_string in function typings always

This commit is contained in:
Zach Daniel 2022-08-22 21:56:13 -04:00
parent 349e207428
commit 0b7f48b7c2

View file

@ -19,10 +19,10 @@ defmodule Ash.Query.Function.Contains do
def args,
do: [
[:ci_string, :ci_string],
[:string, :string],
[:string, :ci_string],
[:ci_string, :string],
[:string, :string]
[:ci_string, :ci_string]
]
def evaluate(%{arguments: [nil, _]}), do: {:known, false}