input
$input
Returns the input value passed to the processor. Acts as a declarative "pass-through". Useful for passing the input to processor arguments that don't normally use the input as a default, or as a placeholder in array arguments.
Example
//
new Schema('string')
.transformer([['{', '$input', '}']])
.transformer({'$join': ''})
"hello" -> "{hello}"