You are here

interface SchemaProviderInterface in GraphQL 8.2

Same name and namespace in other branches
  1. 8 src/SchemaProviderInterface.php \Drupal\graphql\SchemaProviderInterface

Hierarchy

Expanded class hierarchy of SchemaProviderInterface

All classes that implement SchemaProviderInterface

2 files declare their use of SchemaProviderInterface
RequestController.php in src/Controller/RequestController.php
SchemaProviderBase.php in src/SchemaProvider/SchemaProviderBase.php

File

src/SchemaProviderInterface.php, line 5

Namespace

Drupal\graphql
View source
interface SchemaProviderInterface {

  /**
   * @return array
   */
  public function getQuerySchema();

  /**
   * @return array
   */
  public function getMutationSchema();

}

Members