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

DefaultSchema::create()   B

Complexity

Conditions 1
Paths 1

Size

Total Lines 32
Code Lines 20

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 20
nc 1
nop 4
dl 0
loc 32
rs 8.8571
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