bin/console doctrine:fixtures:load
POST http://127.0.0.1/author/create
Accept: application/json
Content-Type: application/json
Cache-Control: no-cache
{
"name": "test"
}
POST http://127.0.0.1/book/search
Accept: application/json
Content-Type: application/json
Cache-Control: no-cache
{
"title": "test"
}
POST http://127.0.0.1/book/create
Accept: application/json
Content-Type: application/json
Cache-Control: no-cache
{
"title": "test",
"author": [
"test1", "test2",
]
}