graphql-php/examples/01-blog/graphql.php

71 lines
2.1 KiB
PHP
Raw Normal View History

<?php
// Test this using following command
2017-01-06 14:50:21 +03:00
// php -S localhost:8080 ./graphql.php
2017-01-06 14:46:37 +03:00
require_once __DIR__ . '/../../vendor/autoload.php';
2016-11-06 17:33:13 +03:00
use \GraphQL\Examples\Blog\Types;
use \GraphQL\Examples\Blog\AppContext;
use \GraphQL\Examples\Blog\Data\DataSource;
use \GraphQL\Type\Schema;
use \GraphQL\GraphQL;
2016-10-23 01:13:55 +03:00
use \GraphQL\Error\FormattedError;
2017-08-19 22:31:11 +03:00
use \GraphQL\Error\Debug;
// Disable default PHP error reporting - we have better one for debug mode (see bellow)
ini_set('display_errors', 0);
2017-08-19 22:31:11 +03:00
$debug = false;
if (!empty($_GET['debug'])) {
set_error_handler(function($severity, $message, $file, $line) use (&$phpErrors) {
2017-08-19 22:31:11 +03:00
throw new ErrorException($message, 0, $severity, $file, $line);
});
2017-08-19 22:31:11 +03:00
$debug = Debug::INCLUDE_DEBUG_MESSAGE | Debug::INCLUDE_TRACE;
}
try {
2016-11-06 17:33:13 +03:00
// Initialize our fake data source
DataSource::init();
// Prepare context that will be available in all field resolvers (as 3rd argument):
$appContext = new AppContext();
2016-11-06 17:33:13 +03:00
$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];
2016-10-23 01:13:55 +03:00
if (null === $data['query']) {
$data['query'] = '{hello}';
2016-10-23 01:13:55 +03:00
}
// GraphQL schema to be passed to query executor:
$schema = new Schema([
2016-11-06 17:33:13 +03:00
'query' => Types::query()
]);
2017-08-19 22:31:11 +03:00
$result = GraphQL::executeQuery(
$schema,
$data['query'],
null,
$appContext,
(array) $data['variables']
);
2017-08-19 22:31:11 +03:00
$output = $result->toArray($debug);
$httpStatus = 200;
} catch (\Exception $error) {
$httpStatus = 500;
2017-08-19 22:31:11 +03:00
$output['errors'] = [
FormattedError::createFromException($error, $debug)
];
}
header('Content-Type: application/json', true, $httpStatus);
2017-08-19 22:31:11 +03:00
echo json_encode($output);