You are here

Vehicle.php in GraphQL 8.3

File

tests/modules/graphql_plugin_test/src/Plugin/GraphQL/Interfaces/Vehicle.php
View source
<?php

namespace Drupal\graphql_plugin_test\Plugin\GraphQL\Interfaces;

use Drupal\graphql\Plugin\GraphQL\Interfaces\InterfacePluginBase;

/**
 * Vehicle interface definition.
 *
 * @GraphQLInterface(
 *   id = "vehicle",
 *   name = "Vehicle"
 * )
 */
class Vehicle extends InterfacePluginBase {

}

Classes

Namesort descending Description
Vehicle Vehicle interface definition.