2015-07-15 23:05:46 +06:00
|
|
|
<?php
|
2018-09-02 10:17:27 +02:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2015-07-15 23:05:46 +06:00
|
|
|
namespace GraphQL;
|
|
|
|
|
2018-09-02 10:17:27 +02:00
|
|
|
use function trigger_error;
|
|
|
|
use const E_USER_DEPRECATED;
|
|
|
|
|
2018-05-27 19:13:32 +07:00
|
|
|
trigger_error(
|
|
|
|
'GraphQL\Schema is moved to GraphQL\Type\Schema',
|
|
|
|
E_USER_DEPRECATED
|
|
|
|
);
|
2015-07-15 23:05:46 +06:00
|
|
|
|
2016-10-17 18:33:47 +07:00
|
|
|
/**
|
2016-10-19 01:34:46 +07:00
|
|
|
* Schema Definition
|
|
|
|
*
|
2017-08-12 21:32:07 +07:00
|
|
|
* @deprecated moved to GraphQL\Type\Schema
|
2016-10-17 18:33:47 +07:00
|
|
|
*/
|
2017-08-12 21:32:07 +07:00
|
|
|
class Schema extends \GraphQL\Type\Schema
|
2015-07-15 23:05:46 +06:00
|
|
|
{
|
|
|
|
}
|