1 | <?php |
||
12 | abstract class PluggableSchemaPluginBase extends SchemaPluginBase implements PluggableSchemaPluginInterface, ContainerFactoryPluginInterface { |
||
13 | |||
14 | /** |
||
15 | * @param \Drupal\graphql\Plugin\GraphQL\PluggableSchemaManagerInterface $schemaManager |
||
16 | * @return \Youshido\GraphQL\Schema\InternalSchemaMutationObject |
||
17 | */ |
||
18 | protected static function getSchemaMutationObject(PluggableSchemaManagerInterface $schemaManager) { |
||
24 | |||
25 | /** |
||
26 | * @param \Drupal\graphql\Plugin\GraphQL\PluggableSchemaManagerInterface $schemaManager |
||
27 | * @return \Youshido\GraphQL\Schema\InternalSchemaQueryObject |
||
28 | */ |
||
29 | protected static function getSchemaQueryObject(PluggableSchemaManagerInterface $schemaManager) { |
||
35 | |||
36 | /** |
||
37 | * @param \Drupal\graphql\Plugin\GraphQL\PluggableSchemaManagerInterface $schemaManager |
||
38 | * @return \object[] |
||
39 | */ |
||
40 | protected static function getSchemaTypesList(PluggableSchemaManagerInterface $schemaManager) { |
||
51 | |||
52 | /** |
||
53 | * @param \Drupal\graphql\Plugin\GraphQL\PluggableSchemaManagerInterface $schemaManager |
||
54 | * @return array |
||
55 | */ |
||
56 | protected static function getSchemaConfiguration(PluggableSchemaManagerInterface $schemaManager) { |
||
63 | |||
64 | /** |
||
65 | * {@inheritdoc} |
||
66 | */ |
||
67 | public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) { |
||
74 | } |
||
75 |