I have a scenario where i would like to create one new parent object with new child object using FLASK-REST-JSON API package . e.g
Scenario like to create a new Person with new computer in one POST method itself.
As per official documentation , we can create new person and new computer using separate POST and then link them together using relationships.However i would like to create both objects together in same POST method.
Please let me know is it possible ? If yes,any example would be great .
Thanks !