You are here

CarInput.php in GraphQL 8.3

File

tests/modules/graphql_plugin_test/src/Plugin/GraphQL/InputTypes/CarInput.php
View 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 {

}

Classes

Namesort descending Description
CarInput Car input type.