Leandro Zubrezki
Results
12
issues of
Leandro Zubrezki
I have: ``` var WoofSchema = schemator.defineSchema('woof', { text: { type: 'string', nullable: true, minLength: 10, maxLength: 300 } }); ``` I expect that if the text is null to...
I have a schema that has 3 fields, "a", "b" and "c". At least one of them has to be not null. Is there a way to add a rule...