mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-21 20:36:05 +03:00
72 lines
2.1 KiB
PHP
72 lines
2.1 KiB
PHP
<?php
|
|
// Test this using following command
|
|
// php -S localhost:8080 ./graphql.php
|
|
require_once __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
use \GraphQL\Examples\Blog\Types;
|
|
use \GraphQL\Examples\Blog\AppContext;
|
|
use \GraphQL\Examples\Blog\Data\DataSource;
|
|
use \GraphQL\Type\Schema;
|
|
use \GraphQL\GraphQL;
|
|
use \GraphQL\Error\FormattedError;
|
|
use \GraphQL\Error\Debug;
|
|
|
|
// Disable default PHP error reporting - we have better one for debug mode (see bellow)
|
|
ini_set('display_errors', 0);
|
|
|
|
$debug = false;
|
|
if (!empty($_GET['debug'])) {
|
|
set_error_handler(function($severity, $message, $file, $line) use (&$phpErrors) {
|
|
throw new ErrorException($message, 0, $severity, $file, $line);
|
|
});
|
|
$debug = Debug::INCLUDE_DEBUG_MESSAGE | Debug::INCLUDE_TRACE;
|
|
}
|
|
|
|
try {
|
|
// Initialize our fake data source
|
|
DataSource::init();
|
|
|
|
// Prepare context that will be available in all field resolvers (as 3rd argument):
|
|
$appContext = new AppContext();
|
|
$appContext->viewer = DataSource::findUser('1'); // simulated "currently logged-in user"
|
|
$appContext->rootUrl = 'http://localhost:8080';
|
|
$appContext->request = $_REQUEST;
|
|
|
|
// Parse incoming query and variables
|
|
if (isset($_SERVER['CONTENT_TYPE']) && strpos($_SERVER['CONTENT_TYPE'], 'application/json') !== false) {
|
|
$raw = file_get_contents('php://input') ?: '';
|
|
$data = json_decode($raw, true) ?: [];
|
|
} else {
|
|
$data = $_REQUEST;
|
|
}
|
|
|
|
$data += ['query' => null, 'variables' => null];
|
|
|
|
if (null === $data['query']) {
|
|
$data['query'] = '{hello}';
|
|
}
|
|
|
|
// GraphQL schema to be passed to query executor:
|
|
$schema = new Schema([
|
|
'query' => Types::query()
|
|
]);
|
|
|
|
$result = GraphQL::executeQuery(
|
|
$schema,
|
|
$data['query'],
|
|
null,
|
|
$appContext,
|
|
(array) $data['variables']
|
|
);
|
|
$output = $result->toArray($debug);
|
|
$httpStatus = 200;
|
|
} catch (\Exception $error) {
|
|
$httpStatus = 500;
|
|
$output['errors'] = [
|
|
FormattedError::createFromException($error, $debug)
|
|
];
|
|
}
|
|
|
|
header('Content-Type: application/json', true, $httpStatus);
|
|
echo json_encode($output);
|