We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, this schema produces no inputs:
new SimpleSchema2Bridge({ schema: new SimpleSchema({ items: Array, "items.$": [ new SimpleSchema({ question: String, answer: String, }), ], }), })
Just put it in the playground and try. Doesn't work even with simple objects
new SimpleSchema2Bridge({ schema: new SimpleSchema({ items: Array, "items.$": Array, "items.$.$": Object, "items.$.question": String, "items.$.answer": String, }), })
Or even with just string nested twice
new SimpleSchema2Bridge({ schema: new SimpleSchema({ items: Array, "items.$": Array, "items.$.$": Object, "items.$.$.question": String, }), })
When nesting is broken down by object it works:
new SimpleSchema2Bridge({ schema: new SimpleSchema({ items: Array, "items.$": Object, "items.$.content": [ new SimpleSchema({ question: String, answer: String, }), ], }), })
The text was updated successfully, but these errors were encountered:
Monteth
No branches or pull requests
Hi, this schema produces no inputs:
Just put it in the playground and try. Doesn't work even with simple objects
Or even with just string nested twice
When nesting is broken down by object it works:
The text was updated successfully, but these errors were encountered: