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
I try to insert a Person have skills and while inserting everything looks okey. But when I list person list from http://localhost:8000/gigy/people I can't se new inserted person skills, it is an empty array. Could you help about this?
Hi there,
I try to insert a Person have skills and while inserting everything looks okey. But when I list person list from
http://localhost:8000/gigy/people
I can't se new inserted person skills, it is an empty array. Could you help about this?I make a POST request to http://localhost:8000/gigy/people with body
{ "name": "Test Member", "age": 30, "skills": [ { "name": "First Test Skill", "level": "AWESOME" }, { "name": "Second Test Skill", "level": "GODLIKE" } ] }
After Person and Skill creation new inserted member looks like below.
{ "id": 8, "name": "Test Member", "age": 30, "skills": [] }
The text was updated successfully, but these errors were encountered: