You are here

PageInfo.php in Open Social 10.0.x

File

modules/custom/social_graphql/src/Plugin/DataType/PageInfo.php
View source
<?php

namespace Drupal\social_graphql\Plugin\DataType;

use Drupal\Core\TypedData\Plugin\DataType\Map;

/**
 * PageInfo Type.
 *
 * Provides information about a GraphQL paged result set ("Connection").
 *
 * @DataType(
 *   id = "page_info",
 *   label = @Translation("Page Info"),
 *   definition_class = "\Drupal\social_graphql\TypedData\Definition\PageInfoDefinition"
 * )
 */
class PageInfo extends Map {

}

Classes

Namesort descending Description
PageInfo PageInfo Type.