Optional field. Matches the provided field and additionally allows null and undefined values.
null
undefined
const schema = fields.nullable(fields.string());schema.create("hello");schema.create(null);
Generated using TypeDoc
Optional field. Matches the provided field and additionally allows
nullandundefinedvalues.