Turns out you cannot query for field starting with `set` when function is declared like this: ```php #[Graph\Field] public function settings(): string ``` You get `Cannot query field "settings" on type "...".` error. Same applies for fields starting with `get`. `function getawayId()` ends up in field field `awayId`. Obviously there is flaw in how the function names are parsed to match the query fields. Maybe the camel case could be taken into consideration