parametric
parametric copied to clipboard
Declarative input schemas for Ruby apps.
Results
1
parametric issues
Sort by
recently updated
recently updated
newest added
## What Add a `.maybe(type_policy)` method that will return `nil` if the value is `nil`, or coerce to the configured type otherwise. ```ruby schema = Parametric::Schema.new do field(:age).maybe(:integer) end schema.resolve(age:...