mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-04-03 04:33:31 +03:00
Merge branch 'master' of https://github.com/webonyx/graphql-php
This commit is contained in:
commit
a2e6502b68
1 changed files with 32 additions and 0 deletions
32
README.md
32
README.md
|
@ -29,6 +29,38 @@ This implementation will follow JavaScript version as close as possible until Gr
|
|||
## Overview
|
||||
GraphQL is intended to be a replacement for REST APIs. [Read more](http://facebook.github.io/react/blog/2015/05/01/graphql-introduction.html) about rationale behind it.
|
||||
|
||||
Example usage:
|
||||
```php
|
||||
$result = GraphQL::execute(
|
||||
StarWarsSchema::build(),
|
||||
'query HeroNameAndFriendsQuery {
|
||||
hero {
|
||||
id
|
||||
name
|
||||
friends {
|
||||
name
|
||||
}
|
||||
}
|
||||
}'
|
||||
)
|
||||
```
|
||||
|
||||
Result returned:
|
||||
```php
|
||||
[
|
||||
'hero' => [
|
||||
'id' => '2001',
|
||||
'name' => 'R2-D2',
|
||||
'friends' => [
|
||||
['name' => 'Luke Skywalker'],
|
||||
['name' => 'Han Solo'],
|
||||
['name' => 'Leia Organa'],
|
||||
]
|
||||
]
|
||||
]
|
||||
```
|
||||
(see also [schema definition](https://github.com/webonyx/graphql-php/blob/master/tests/StarWarsSchema.php#L22) for type system of this example).
|
||||
|
||||
This PHP implementation is a thin wrapper around your existing data layer and business logic. It doesn't dictate how these layers are implemented or which storage engines are used. Instead it provides tools for creating API for your existing app. These tools include:
|
||||
- Type system
|
||||
- Schema validation and introspection
|
||||
|
|
Loading…
Add table
Reference in a new issue