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
In OneToManyCrudController we are using createParentQuery to query for the parent item to check for existence and to assign it on the child model (https://github.com/atsid/play-crud/blob/master/app/com/atsid/play/controllers/OneToManyCrudController.java#L101). We only need the "id" property on the parent, the rest of the fields are unnecessary. It could also lead to problems with serialization if some of the fields returned from the query contain looping references.
The text was updated successfully, but these errors were encountered:
In OneToManyCrudController we are using createParentQuery to query for the parent item to check for existence and to assign it on the child model (https://github.com/atsid/play-crud/blob/master/app/com/atsid/play/controllers/OneToManyCrudController.java#L101). We only need the "id" property on the parent, the rest of the fields are unnecessary. It could also lead to problems with serialization if some of the fields returned from the query contain looping references.
The text was updated successfully, but these errors were encountered: