You are here

public function Wheels::resolveValues in GraphQL 8.3

Retrieve the list of field values.

Always returns a list of field values. Even for single value fields. Single/multi field handling is responsibility of the base class.

Parameters

mixed $value: The current object value.

array $args: Field arguments.

$context: The resolve context.

\GraphQL\Type\Definition\ResolveInfo $info: The resolve info object.

Return value

\Generator The value generator.

Overrides FieldPluginBase::resolveValues

1 call to Wheels::resolveValues()
MoreWheels::resolveValues in tests/modules/graphql_override_test/src/Plugin/GraphQL/Fields/MoreWheels.php
Retrieve the list of field values.
1 method overrides Wheels::resolveValues()
MoreWheels::resolveValues in tests/modules/graphql_override_test/src/Plugin/GraphQL/Fields/MoreWheels.php
Retrieve the list of field values.

File

tests/modules/graphql_plugin_test/src/Plugin/GraphQL/Fields/Wheels.php, line 25

Class

Wheels
The number of wheels a vehicle has.

Namespace

Drupal\graphql_plugin_test\Plugin\GraphQL\Fields

Code

public function resolveValues($value, array $args, ResolveContext $context, ResolveInfo $info) {
  (yield $value['wheels']);
}