fix: don't eager evaluate composite type construction

This commit is contained in:
Zach Daniel 2023-11-29 09:34:26 -05:00
parent 61351e3981
commit e1193098c8

View file

@ -6,7 +6,7 @@ defmodule Ash.Query.Function.CompositeType do
Check that type's documentation for this information. Check that type's documentation for this information.
""" """
use Ash.Query.Function, name: :composite_type use Ash.Query.Function, name: :composite_type, eager_evaluate?: false
def args, do: [[:any, :any], [:any, :any, :any]] def args, do: [[:any, :any], [:any, :any, :any]]