mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-25 06:16:05 +03:00
17 lines
243 B
PHP
17 lines
243 B
PHP
<?php
|
|
namespace GraphQL;
|
|
|
|
trigger_error(
|
|
'GraphQL\Schema is moved to GraphQL\Type\Schema',
|
|
E_USER_DEPRECATED
|
|
);
|
|
|
|
/**
|
|
* Schema Definition
|
|
*
|
|
* @deprecated moved to GraphQL\Type\Schema
|
|
*/
|
|
class Schema extends \GraphQL\Type\Schema
|
|
{
|
|
}
|