GraphQL separates config for resolver and mutation bundle #2644

pull/2715/head
Angel Fernando Quiroz Campos 6 years ago
parent bd944c48f0
commit c3cb05085e
  1. 11
      config/services.yaml

@ -41,10 +41,13 @@ services:
arguments:
$debug: '%kernel.debug%'
Chamilo\ApiBundle\GraphQL\:
resource: '../src/ApiBundle/GraphQL/*'
exclude: '../src/ApiBundle/GraphQL/{Resources}'
tags: ['overblog_graphql.resolver', 'overblog_graphql.mutation']
Chamilo\ApiBundle\GraphQL\Resolver\:
resource: '../src/ApiBundle/GraphQL/Resolver'
tags: ['overblog_graphql.resolver']
Chamilo\ApiBundle\GraphQL\Mutation\:
resource: '../src/ApiBundle/GraphQL/Mutation'
tags: ['overblog_graphql.mutation']
Doctrine\ORM\EntityManager: "@doctrine.orm.default_entity_manager"

Loading…
Cancel
Save