Closed
Description
API Platform version(s) affected: 3.2.4
Description
After updating from last 3.1 to 3.2.4 some json-ld context are reported missing
How to reproduce
Order has an OneToOne relation to Address available threw #Groups(['order:read'])
#src/Entity/Order.php
#[Groups(['order:read'])]
#[ORM\OneToOne(targetEntity: Address::class)]
private ?Address $address = null;
json-ld context is missing from schema Address.jsonld-order.read but not from Address.jsonld-address.read
Additional Context
Before 3.2
After 3.2
Thanks in advance for your attention! :)