mirror of
https://gitee.com/hyperf/hyperf.git
synced 2024-12-04 04:37:46 +08:00
142 lines
2.4 KiB
Markdown
142 lines
2.4 KiB
Markdown
# GraphQL
|
|
|
|
The GraphQL component abstracts [thecodingmachine/graphqlite](https://github.com/thecodingmachine/graphqlite).
|
|
|
|
## Install
|
|
|
|
```bash
|
|
composer require hyperf/graphql
|
|
```
|
|
|
|
## Quick start
|
|
|
|
### Simple query
|
|
```php
|
|
<?php
|
|
|
|
namespace App\Controller;
|
|
|
|
use GraphQL\GraphQL;
|
|
use GraphQL\Type\Schema;
|
|
use Hyperf\Di\Annotation\Inject;
|
|
use Hyperf\GraphQL\Annotation\Query;
|
|
use Hyperf\HttpServer\Annotation\Controller;
|
|
use Hyperf\HttpServer\Annotation\PostMapping;
|
|
use Hyperf\HttpServer\Contract\RequestInterface;
|
|
|
|
#[Controller]
|
|
class GraphQLController
|
|
{
|
|
/**
|
|
* @var Schema
|
|
*/
|
|
#[Inject]
|
|
protected $schema;
|
|
|
|
#[PostMapping(path: "/graphql")]
|
|
public function test(RequestInterface $request)
|
|
{
|
|
$rawInput = $request->getBody()->getContents();
|
|
$input = json_decode($rawInput, true);
|
|
$query = $input['query'];
|
|
$variableValues = isset($input['variables']) ? $input['variables'] : null;
|
|
return GraphQL::executeQuery($this->schema, $query, null, null, $variableValues)->toArray();
|
|
}
|
|
|
|
#[Query]
|
|
public function hello(string $name): string
|
|
{
|
|
return $name;
|
|
}
|
|
}
|
|
```
|
|
Inquire:
|
|
```graphql
|
|
{
|
|
hello(name: "graphql")
|
|
}
|
|
```
|
|
Response:
|
|
```json
|
|
{
|
|
"data": {
|
|
"hello": "graphql"
|
|
}
|
|
}
|
|
```
|
|
|
|
### Typemap
|
|
|
|
```php
|
|
<?php
|
|
namespace App\Model;
|
|
|
|
use Hyperf\GraphQL\Annotation\Type;
|
|
use Hyperf\GraphQL\Annotation\Field;
|
|
|
|
#[Type]
|
|
class Product
|
|
{
|
|
protected $name;
|
|
protected $price;
|
|
|
|
public function __construct(string $name, float $price)
|
|
{
|
|
$this->name = $name;
|
|
$this->price = $price;
|
|
}
|
|
|
|
#[Field]
|
|
public function getName(): string
|
|
{
|
|
return $this->name;
|
|
}
|
|
|
|
#[Field]
|
|
public function getPrice(): ?float
|
|
{
|
|
return $this->price;
|
|
}
|
|
}
|
|
```
|
|
|
|
Add in `GraphQLController`
|
|
|
|
```php
|
|
<?php
|
|
use App\Model\Product;
|
|
use Hyperf\GraphQL\Annotation\Query;
|
|
|
|
#[Query]
|
|
public function product(string $name, float $price): Product
|
|
{
|
|
return new Product($name, $price);
|
|
}
|
|
```
|
|
|
|
Inquire:
|
|
```graphql
|
|
{
|
|
hello(name: "graphql")
|
|
product(name: "goods", price: 156.5) {
|
|
name
|
|
price
|
|
}
|
|
}
|
|
```
|
|
|
|
response:
|
|
```json
|
|
{
|
|
"data": {
|
|
"hello": "graphql",
|
|
"product": {
|
|
"name": "goods",
|
|
"price": 156.5
|
|
}
|
|
}
|
|
}
|
|
```
|
|
|
|
For more usage methods, see the documentation of [GraphQLite](https://graphqlite.thecodingmachine.io/docs/queries).
|