Completed
Push — 8.x-3.x ( 9f5f1b...885c5d )
by Sebastian
06:17 queued 04:05
created

DefaultSchema::create()   B

Complexity

Conditions 1
Paths 1

Size

Total Lines 31
Code Lines 19

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 19
nc 1
nop 4
dl 0
loc 31
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