GraphQLScalar.php in GraphQL 8.3
Namespace
Drupal\graphql\AnnotationFile
src/Annotation/GraphQLScalar.phpView source
<?php
namespace Drupal\graphql\Annotation;
/**
* Annotation for GraphQL scalar plugins.
*
* @Annotation
*/
class GraphQLScalar extends GraphQLAnnotationBase {
/**
* {@inheritdoc}
*/
public $pluginType = GRAPHQL_SCALAR_PLUGIN;
/**
* The typed data type of this type.
*
* @var string|null
*/
public $type = NULL;
}
Classes
Name | Description |
---|---|
GraphQLScalar | Annotation for GraphQL scalar plugins. |