How not to select fields when loading a resource
Is there a way in Ash to not select a field when loading a resource?
We have some fields in the DB that are really large and we don't need to select them most of the time. Is there a way to tell Ash not to select that field for this particular load or action?
5 Replies
The same functions are available in the Ash.Changeset module. You could do this in the action itself with a
prepare/build
step I thinkGot it, thank you!
TIL about deselect!