You are here

class GraphQLType in GraphQL 8.3

Annotation for GraphQL type plugins.

Hierarchy

Expanded class hierarchy of GraphQLType

1 file declares its use of GraphQLType
MockGraphQLPluginTrait.php in tests/src/Traits/MockGraphQLPluginTrait.php
1 string reference to 'GraphQLType'
graphql.services.yml in ./graphql.services.yml
graphql.services.yml
22 classes are annotated with GraphQLType
Bike in tests/modules/graphql_plugin_test/src/Plugin/GraphQL/Types/Bike.php
A bike type.
Car in tests/modules/graphql_plugin_test/src/Plugin/GraphQL/Types/Car.php
A bike type.
ConstraintViolation in modules/graphql_core/src/Plugin/GraphQL/Types/Mutations/ConstraintViolation.php
GraphQL type for validation constraint violations.
DefaultInternalUrl in modules/graphql_core/src/Plugin/GraphQL/Types/Routing/DefaultInternalUrl.php
Plugin annotation @GraphQLType( id = "default_internal_url", name = "DefaultInternalUrl", interfaces = {"InternalUrl"}, weight = -1 )
EntityBundle in modules/graphql_core/src/Plugin/GraphQL/Types/Entity/EntityBundle.php
Plugin annotation @GraphQLType( id = "entity_bundle", schema_cache_tags = {"entity_types", "entity_bundles"}, deriver = "Drupal\graphql_core\Plugin\Deriver\Types\EntityBundleDeriver" )

... See full list

File

src/Annotation/GraphQLType.php, line 10

Namespace

Drupal\graphql\Annotation
View source
class GraphQLType extends GraphQLAnnotationBase {

  /**
   * {@inheritdoc}
   */
  public $pluginType = GRAPHQL_TYPE_PLUGIN;

  /**
   * The list of interfaces implemented by this type.
   *
   * Fields annotated to interfaces will be inherited.
   *
   * @var array
   */
  public $interfaces = [];

  /**
   * The list of union types containing this type.
   *
   * @var array
   */
  public $unions = [];

  /**
   * The typed data type of this type.
   *
   * @var string|null
   */
  public $type = NULL;

}

Members

Namesort descending Modifiers Type Description Overrides
GraphQLAnnotationBase::$description public property The component description.
GraphQLAnnotationBase::$name public property The component name.
GraphQLAnnotationBase::$response_cache_contexts public property The cache contexts for caching the response.
GraphQLAnnotationBase::$response_cache_max_age public property The cache max age for caching the response.
GraphQLAnnotationBase::$response_cache_tags public property The cache tags for caching the response.
GraphQLAnnotationBase::$schema_cache_contexts public property The cache contexts for caching the type system definition in the schema.
GraphQLAnnotationBase::$schema_cache_max_age public property The cache max age for caching the type system definition in the schema.
GraphQLAnnotationBase::$schema_cache_tags public property The cache tags for caching the type system definition in the schema.
GraphQLAnnotationBase::$weight public property Weight for precedence calculations.
GraphQLAnnotationBase::__construct public function GraphQLAnnotationBase constructor. Overrides Plugin::__construct
GraphQLType::$interfaces public property The list of interfaces implemented by this type.
GraphQLType::$pluginType public property The plugin type. Overrides GraphQLAnnotationBase::$pluginType
GraphQLType::$type public property The typed data type of this type.
GraphQLType::$unions public property The list of union types containing this type.
Plugin::$definition protected property The plugin definition read from the class annotation. 1
Plugin::get public function Gets the value of an annotation. Overrides AnnotationInterface::get 5
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass
Plugin::getId public function Gets the unique ID for this annotated class. Overrides AnnotationInterface::getId
Plugin::getProvider public function Gets the name of the provider of the annotated class. Overrides AnnotationInterface::getProvider
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass
Plugin::setProvider public function Sets the name of the provider of the annotated class. Overrides AnnotationInterface::setProvider