You are here

SchemaProviderInterface.php in GraphQL 8

Same filename and directory in other branches
  1. 8.2 src/SchemaProviderInterface.php

Namespace

Drupal\graphql

File

src/SchemaProviderInterface.php
View source
<?php

namespace Drupal\graphql;

interface SchemaProviderInterface {

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

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

}

Interfaces