问题 I'am using symfony and api platform. I have a ressource with : /** * @ApiResource() */ class Credit { /** * @ORM\Id() * @ORM\GeneratedValue() * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="integer") */ private $value; } the result of /api/credits is : { "@context": "/api/contexts/Credit", "@id": "/api/credits", "@type": "hydra:Collection", "hydra:member": [ { "@id": "/api/credits/1", "@type": "Credit", "id": 1, "value": 200, "createdAt": "2019-03" }, { "@id": "/api