We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bc8078 commit b96d9d1Copy full SHA for b96d9d1
UPGRADE-0.12.md
@@ -21,22 +21,13 @@ UPGRADE FROM 0.11 to 0.12
21
```
22
- use Symfony 4+ service configuration to tag your types, resolvers or mutation.
23
```yaml
24
- # config/graphql.yaml
+ # config/services.yaml
25
services:
26
_defaults:
27
- autowire: true
28
- public: true
29
-
30
- _instanceof:
31
- GraphQL\Type\Definition\Type:
32
- tags: ['overblog_graphql.type']
33
- Overblog\GraphQLBundle\Definition\Resolver\ResolverInterface:
34
- tags: ['overblog_graphql.resolver']
35
- Overblog\GraphQLBundle\Definition\Resolver\MutationInterface:
36
- tags: ['overblog_graphql.mutation']
37
+ autoconfigure: true
+
38
App\GraphQL\:
39
- resource: ../GraphQL
+ resource: ../src/GraphQL
40
41
42
0 commit comments