Replies: 2 comments
|
Perhaps you can perform the preparation before calling |
0 replies
|
@LeCarbonator How would the prepared data then get passed through the data pipeline (i.e. to the validator and handler)? |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Is there some sort of "prepare" step in the data pipeline? e.g. Form data needs to be prepared before submission where the calculation is expensive. I can't validate the form until the data is transformed though, and the same transformation needs to occur for form submission.
prepare->validate->submitRight now it seems like I would need to transform the data for both the
validateandsubmitsteps.(I'm new to the community, so still not familiar on how exactly to look for these things. Sorry if this is a duplicate)
All reactions