You are here

GraphQLScalar.php in GraphQL 8.3

File

src/Annotation/GraphQLScalar.php
View 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

Namesort descending Description
GraphQLScalar Annotation for GraphQL scalar plugins.