You are here

MotorizedVehicle.php in GraphQL 8.3

File

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

namespace Drupal\graphql_plugin_test\Plugin\GraphQL\Interfaces;

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

/**
 * Vehicle interface definition.
 *
 * @GraphQLInterface(
 *   id = "motorized_vehicle",
 *   name = "MotorizedVehicle",
 *   interfaces = {"Vehicle"}
 * )
 */
class MotorizedVehicle extends InterfacePluginBase {

}

Classes

Namesort descending Description
MotorizedVehicle Vehicle interface definition.