You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creating parent documents does not work. In my case, I could not create a document that has a parent that was an array of embedded documents. The return
Executing POST request in postman with following json body { "parentDocument": "5f466be4c5505", "parentProperty": "travels", "parentPropertyType": "append", "data": { "locations": [] } }
Seems like the parent document was validated using the collection rules of the child document. I have added a check to overwrite the rules when a parent document is being used.
Creating parent documents does not work. In my case, I could not create a document that has a parent that was an array of embedded documents. The return
Executing POST request in postman with following json body
{ "parentDocument": "5f466be4c5505", "parentProperty": "travels", "parentPropertyType": "append", "data": { "locations": [] } }
resulted in
{ "message": "Bad structure. Invalid document structure: Unknown property \"locations\" type. Make sure to follow users collection structure", "code": 400, "version": "0.6.2" }
The text was updated successfully, but these errors were encountered: