You are here

protected function GraphQLTestBase::getSchemaDefinitions in GraphQL 8.3

File

tests/src/Kernel/GraphQLTestBase.php, line 43

Class

GraphQLTestBase
Base class for GraphQL tests.

Namespace

Drupal\Tests\graphql\Kernel

Code

protected function getSchemaDefinitions() {
  return [
    'default' => [
      'id' => 'default',
      'name' => 'default',
      'path' => 'graphql',
      'deriver' => 'Drupal\\graphql\\Plugin\\Deriver\\PluggableSchemaDeriver',
    ],
  ];
}