-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
enhancementNew feature or requestNew feature or requestmodifiersRelated to modifiers functionalityRelated to modifiers functionality
Description
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.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestmodifiersRelated to modifiers functionalityRelated to modifiers functionality