You are here

DateScalar.php in GraphQL 8.3

File

src/Plugin/GraphQL/Scalars/Internal/DateScalar.php
View source
<?php

namespace Drupal\graphql\Plugin\GraphQL\Scalars\Internal;

use Drupal\graphql\Plugin\GraphQL\Scalars\ScalarPluginBase;

/**
 * @GraphQLScalar(
 *   id = "date",
 *   name = "Date"
 * )
 */
class DateScalar extends ScalarPluginBase {

}

Classes

Namesort descending Description
DateScalar Plugin annotation @GraphQLScalar( id = "date", name = "Date" )