1 | <?php |
||
24 | class Context extends FieldPluginBase implements ContainerFactoryPluginInterface { |
||
|
|||
25 | |||
26 | /** |
||
27 | * The context repository service. |
||
28 | * |
||
29 | * @var \Drupal\Core\Plugin\Context\ContextRepositoryInterface |
||
30 | */ |
||
31 | protected $contextRepository; |
||
32 | |||
33 | /** |
||
34 | * The subrequest buffer service. |
||
35 | * |
||
36 | * @var \Drupal\graphql\GraphQL\Buffers\SubRequestBuffer |
||
37 | */ |
||
38 | protected $subRequestBuffer; |
||
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | public static function create(ContainerInterface $container, array $configuration, $pluginId, $pluginDefinition) { |
||
52 | |||
53 | /** |
||
54 | * {@inheritdoc} |
||
55 | */ |
||
56 | public function __construct( |
||
67 | |||
68 | /** |
||
69 | * {@inheritdoc} |
||
70 | */ |
||
71 | protected function resolveValues($value, array $args, ResolveInfo $info) { |
||
84 | |||
85 | } |
||
86 |