CarInput.php in GraphQL 8.3
File
tests/modules/graphql_plugin_test/src/Plugin/GraphQL/InputTypes/CarInput.phpView source
<?php
namespace Drupal\graphql_plugin_test\Plugin\GraphQL\InputTypes;
use Drupal\graphql\Plugin\GraphQL\InputTypes\InputTypePluginBase;
/**
* Car input type.
*
* @GraphQLInputType(
* id = "car_input",
* name = "CarInput",
* fields = {
* "engine" = "String"
* }
* )
*/
class CarInput extends InputTypePluginBase {
}