We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Have a custom modifier (such as the custom function validator), that allows to create custom functions that modifies input.
Real world example 1: You want to store a field always in uppercase, even if it cames in lowercase.
Real world example 2: You have an object that references other by ID, and in some cases object might be complete:
Transform
{ name: 'Pau gasol', // Populated object team: { id: 'a9d2453e', name: 'San Antonio Spurs', leage: 'NBA' } }
into:
{ name: 'Pau gasol', // Just ID team: 'a9d2453e' }
So, you want transform it to just the ID when populated object came.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Have a custom modifier (such as the custom function validator), that allows to create custom functions that modifies input.
Real world example 1:
You want to store a field always in uppercase, even if it cames in lowercase.
Real world example 2:
You have an object that references other by ID, and in some cases object might be complete:
Transform
into:
So, you want transform it to just the ID when populated object came.
The text was updated successfully, but these errors were encountered: