-
Notifications
You must be signed in to change notification settings - Fork 223
Closed
Labels
Milestone
Description
Q | A |
---|---|
Bug report? | no |
Feature request? | yes |
BC Break report? | no |
RFC? | no |
Version/Branch | 0.11 |
A mutation config defines the fields expected by the mutation and thus the resolver.
The resolver receives a generic Overblog\GraphQLBundle\Definition\Argument
which does not map these fields to PHP class properties.
We could use expression language like [args['myField'], args['myOtherField']]
but it's kind of a duplicate of the fields list.
mcg-web