Post the full related object in ng-admin

43 views Asked by At

There's a way to post the full related object? For example, I need a full post object when a post a comment, not just the post id:

Instead of:

{
   comment_id: 1,
   text: "my comment",
   post: 1
}

I need:

{
   comment_id: 1,
   text: "my comment",
   post: {
      post_id: 1,
      title: "Post Title"
   } 
}
0

There are 0 answers