When I create a new item: ```python POST /items { "name": "testing" } ``` It response the id of the inserted row, in array format ``` [{"id": 1}] ``` How to get response of the row ``` { "id": 1, "name": "testing" } ```