I have a library that provides a couple of Ecto Changesets.
Unfortunately, those Changesets are out of my control.
In my project, I would like to use Ash Resources instead of plain Ecto.Changesets.
Some of my Ash Resources need to embed the given Ecto Changesets.
However, when defining attributes
, I can only reference anything that implements Ash.Type
from what I can tell.
Is it possible to embed “plain” Ecto Changesets in an Ash resource?