ResolveInfo not available in Query
| Q | A |
|---|---|
| Bug report? | yes |
| Feature request? | no |
| BC Break report? | no |
| RFC? | no |
| Version/Branch | 1.1.0 |
Hello, I'm working on a large project with the update of the lib from version 1.0.0 to version 1.4.0. The following code is used which causes problems with the update:
#[GQL\Query(resolve: "query('CurrentClass:: getUser', info, args.id)")]
#[GQL\Arg('id', 'String!')]
public function getUser(ResolveInfo $info, string $id): User
Error:
Argument n°1 "$resolveInfo" on method "getUser" cannot be auto-guessed from the following type guessers:
[Type Hint] No corresponding GraphQL scalar,enum,input found for class "GraphQL\Type\Definition\ResolveInfo"
Since 1.1.0, is there another way to get ResolveInfo or is the observed behavior a bug?
I am having the same issue @Vincz any suggestion how to get ResolverInfo in Query in versions after 1.1.0?
Hi guys. In this case, the argument should be ignored from arguments generation in the MetadataParser and it should be populated automatically by the ArgumentsTransformer.
Any of you want to work on this?
@Vincz TBO I looked into it a little and was able to skip arg 'info' in guessArgs of MetadataParser but then I don't see any way to know in ArgumentsTransformer if the Query has 'info' argument like in example: public function getUser(ResolveInfo $info, string $id) because generated function don't know about info as we skipped this argument. Would be so kind and ask someone who knows better what to do to look in it? Thanks.
Hi @AlexOstrovsky! I'll try to look into it by the end of the week.
Hi @Vincz any luck with this?
@Vincz did you have time to look at this by any chance?
Hi @AlexOstrovsky You can find here an implementation: https://github.com/overblog/GraphQLBundle/pull/1191 Let me know what you think
@Vincz tried your fork all works as expeted from my point of view