Small correction in examples

This commit is contained in:
bertrandgauthier 2017-01-06 12:46:37 +01:00
parent 595ae52e85
commit 8df665610b
2 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,9 @@
<?php <?php
// Test this using following command // Test this using following command
// php -S localhost:8080 ./graphql.php // php -S localhost:8080 ./graphql.php &
require_once '../../vendor/autoload.php'; // curl http://localhost:8080 -d "query { echo(message: \"Hello\") }"
// curl http://localhost:8080 -d "mutation { sum(x: 2, y: 2) }"
require_once __DIR__ . '/../../vendor/autoload.php';
use GraphQL\Type\Definition\ObjectType; use GraphQL\Type\Definition\ObjectType;
use GraphQL\Type\Definition\Type; use GraphQL\Type\Definition\Type;

View File

@ -1,7 +1,7 @@
<?php <?php
// Test this using following command // Test this using following command
// php -S localhost:8080 ./index.php // php -S localhost:8080 ./index.php
require_once '../../vendor/autoload.php'; require_once __DIR__ . '/../../vendor/autoload.php';
use \GraphQL\Examples\Blog\Types; use \GraphQL\Examples\Blog\Types;
use \GraphQL\Examples\Blog\AppContext; use \GraphQL\Examples\Blog\AppContext;