Completed
Pull Request — 8.x-3.x (#404)
by Sebastian
03:56 queued 01:36
created

DefaultSchema::constructSchema()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 3
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Drupal\graphql_core\Plugin\GraphQL\Schemas;
4
5
use Drupal\graphql\Plugin\GraphQL\Schemas\SchemaPluginBase;
6
7
/**
8
 * Default generated schema.
9
 *
10
 * @GraphQLSchema(
11
 *   id = "default",
12
 *   name = "Default",
13
 *   path = "/graphql",
14
 *   builder = "\Drupal\graphql\Plugin\GraphQL\PluggableSchemaBuilder"
15
 * )
16
 */
17
class DefaultSchema extends SchemaPluginBase {
18
19
}
20