You are here

public function BuyCar::resolve in GraphQL 8.3

File

tests/modules/graphql_plugin_test/src/Plugin/GraphQL/Mutations/BuyCar.php, line 63

Class

BuyCar
A test mutation.

Namespace

Drupal\graphql_plugin_test\Plugin\GraphQL\Mutations

Code

public function resolve($value, array $args, ResolveContext $context, ResolveInfo $info) {
  return $this->garage
    ->insertVehicle($args['car']);
}