File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
overblog_graphql_endpoint :
2
2
path : /
3
3
defaults :
4
- _controller : overblog_graphql.controller.graphql :endpointAction
4
+ _controller : Overblog\GraphQLBundle\Controller\GraphController: :endpointAction
5
5
_format : " json"
6
6
7
7
overblog_graphql_batch_endpoint :
8
8
path : /batch
9
9
defaults :
10
- _controller : overblog_graphql.controller.graphql :batchEndpointAction
10
+ _controller : Overblog\GraphQLBundle\Controller\GraphController: :batchEndpointAction
11
11
_format : " json"
12
12
13
13
overblog_graphql_multiple_endpoint :
14
14
path : /graphql/{schemaName}
15
15
defaults :
16
- _controller : overblog_graphql.controller.graphql :endpointAction
16
+ _controller : Overblog\GraphQLBundle\Controller\GraphController: :endpointAction
17
17
_format : " json"
18
18
19
19
overblog_graphql_batch_multiple_endpoint :
20
20
path : /graphql/{schemaName}/batch
21
21
defaults :
22
- _controller : overblog_graphql.controller.graphql :batchEndpointAction
22
+ _controller : Overblog\GraphQLBundle\Controller\GraphController: :batchEndpointAction
23
23
_format : " json"
Original file line number Diff line number Diff line change @@ -121,6 +121,10 @@ services:
121
121
- " @overblog_graphql.request_parser"
122
122
- " %overblog_graphql.handle_cors%"
123
123
- " %overblog_graphql.batching_method%"
124
+
125
+ Overblog\GraphQLBundle\Controller\GraphController :
126
+ public : true
127
+ alias : ' overblog_graphql.controller.graphql'
124
128
125
129
overblog_graphql.command.dump_schema :
126
130
class : Overblog\GraphQLBundle\Command\GraphQLDumpSchemaCommand
You can’t perform that action at this time.
0 commit comments