| Q | A | ---------------- | ----- | Bug report? | yes | Feature request? | no | BC Break report? | yes | RFC? |no | Version/Branch | 0.15.2 Using PHP 8.1 native Enum with #[Enum] Attributes Fails. I have an Enum File with the following contents <?php namespace App\Entity\Transport\Vehicle; use Overblog\GraphQLBundle\Annotation\Enum; #[Enum} enum VehicleStatus: string{ case PENDING = 'pending'; case ACTIVE = 'active'; } This leads to the Error: Invalid type for path "overblog_graphql_types.VehicleStatus._enum_config.values.PENDING.value". Expected "scalar", but got "App\Entity\Transport\Vehicle\VehicleStatus". Any solution for this? Im running php 8.2