graphql-php/docs/getting-started.md

126 lines
4.1 KiB
Markdown
Raw Normal View History

2016-11-05 19:55:51 +03:00
# Prerequisites
This documentation assumes your familiarity with GraphQL concepts. If it is not the case -
2017-08-20 18:10:37 +03:00
first learn about GraphQL on [the official website](http://graphql.org/learn/).
2016-11-05 19:55:51 +03:00
2016-10-23 18:16:32 +03:00
# Installation
Using [composer](https://getcomposer.org/doc/00-intro.md), simply run:
2016-10-23 18:16:32 +03:00
```sh
composer require webonyx/graphql-php
```
2016-10-23 18:16:32 +03:00
2016-11-25 14:07:51 +03:00
# Upgrading
We try to keep library releases backwards compatible. But when breaking changes are inevitable
they are explained in [upgrade instructions](https://github.com/webonyx/graphql-php/blob/master/UPGRADE.md).
2016-10-23 18:16:32 +03:00
# Install Tools (optional)
While it is possible to communicate with GraphQL API using regular HTTP tools it is way
more convenient for humans to use [GraphiQL](https://github.com/graphql/graphiql) - an in-browser
2017-08-20 18:10:37 +03:00
IDE for exploring GraphQL APIs.
2016-10-23 18:16:32 +03:00
It provides syntax-highlighting, auto-completion and auto-generated documentation for
GraphQL API.
The easiest way to use it is to install one of the existing Google Chrome extensions:
- [ChromeiQL](https://chrome.google.com/webstore/detail/chromeiql/fkkiamalmpiidkljmicmjfbieiclmeij)
- [GraphiQL Feen](https://chrome.google.com/webstore/detail/graphiql-feen/mcbfdonlkfpbfdpimkjilhdneikhfklp)
2017-08-20 18:10:37 +03:00
Alternatively, you can follow instructions on [the GraphiQL](https://github.com/graphql/graphiql)
2016-10-23 18:16:32 +03:00
page and install it locally.
# Hello World
2017-08-20 18:10:37 +03:00
Let's create a type system that will be capable to process following simple query:
2016-10-23 18:16:32 +03:00
```
2016-11-25 14:07:51 +03:00
query {
2016-10-23 18:16:32 +03:00
echo(message: "Hello World")
}
```
To do so we need an object type with field `echo`:
```php
<?php
use GraphQL\Type\Definition\ObjectType;
use GraphQL\Type\Definition\Type;
$queryType = new ObjectType([
'name' => 'Query',
'fields' => [
'echo' => [
'type' => Type::string(),
'args' => [
'message' => Type::nonNull(Type::string()),
],
'resolve' => function ($root, $args) {
return $root['prefix'] . $args['message'];
}
],
],
]);
2016-10-23 18:16:32 +03:00
```
(Note: type definition can be expressed in [different styles](type-system/index.md#type-definition-styles),
2016-11-25 14:07:51 +03:00
but this example uses **inline** style for simplicity)
2016-10-23 18:16:32 +03:00
2017-08-20 18:10:37 +03:00
The interesting piece here is **resolve** option of field definition. It is responsible for returning
a value of our field. Values of **scalar** fields will be directly included in response while values of
**composite** fields (objects, interfaces, unions) will be passed down to nested field resolvers
2016-11-05 19:55:51 +03:00
(not in this example though).
2016-10-23 18:16:32 +03:00
Now when our type is ready, let's create GraphQL endpoint file for it **graphql.php**:
2016-10-23 18:16:32 +03:00
```php
<?php
use GraphQL\GraphQL;
use GraphQL\Type\Schema;
2016-10-23 18:16:32 +03:00
$schema = new Schema([
2016-11-05 19:55:51 +03:00
'query' => $queryType
2016-10-23 18:16:32 +03:00
]);
$rawInput = file_get_contents('php://input');
$input = json_decode($rawInput, true);
$query = $input['query'];
$variableValues = isset($input['variables']) ? $input['variables'] : null;
2016-10-23 18:16:32 +03:00
try {
$rootValue = ['prefix' => 'You said: '];
2017-08-16 22:17:01 +03:00
$result = GraphQL::executeQuery($schema, $query, $rootValue, null, $variableValues);
$output = $result->toArray();
2016-10-23 18:16:32 +03:00
} catch (\Exception $e) {
$output = [
2017-08-16 22:17:01 +03:00
'errors' => [
[
'message' => $e->getMessage()
]
2016-10-23 18:16:32 +03:00
]
];
}
header('Content-Type: application/json');
echo json_encode($output);
2016-10-23 18:16:32 +03:00
```
Our example is finished. Try it by running:
2016-10-23 18:16:32 +03:00
```sh
php -S localhost:8000 graphql.php
curl http://localhost:8080 -d '{"query": "query { echo(message: \"Hello World\") }" }'
2016-10-23 18:16:32 +03:00
```
Check out the full [source code](https://github.com/webonyx/graphql-php/blob/master/examples/00-hello-world) of this example
which also includes simple mutation.
2016-11-05 19:55:51 +03:00
Obviously hello world only scratches the surface of what is possible.
2016-10-23 18:16:32 +03:00
So check out next example, which is closer to real-world apps.
Or keep reading about [schema definition](type-system/index.md).
2016-10-23 18:16:32 +03:00
# Blog example
2017-08-20 18:10:37 +03:00
It is often easier to start with a full-featured example and then get back to documentation
2016-10-23 18:16:32 +03:00
for your own work.
Check out [Blog example of GraphQL API](https://github.com/webonyx/graphql-php/tree/master/examples/01-blog).
It is quite close to real-world GraphQL hierarchies. Follow instructions and try it yourself in ~10 minutes.