Improved homepage

This commit is contained in:
Syrus Akbary 2016-05-28 23:07:27 -07:00
parent e5357ccc84
commit 0f94f2b2ef
3 changed files with 52 additions and 4 deletions

View File

@ -362,6 +362,12 @@ $title
.docs
@extend $wrapper
.homepage-intro
col(1/2)
.homepage-schema
col(1/2)
.docs-aside
col(1/4)
margin-top 60px

View File

@ -10,8 +10,8 @@ Let's build a basic GraphQL schema from scratch.
## Requirements
- Python (2.6.5+, 2.7, 3.2, 3.3, 3.4, 3.5, pypy)
- Graphene (0.4+)
- Python (2.7, 3.2, 3.3, 3.4, 3.5, pypy)
- Graphene (0.10+)
## Project setup

View File

@ -3,8 +3,50 @@ path: /
---
<div class="starwars-example-wrapper"><a class="starwars-example" href="http://swapi.graphene-python.org/">Check our Django Starwars API example!</a></div>
<div>
<div class="homepage-intro">
## Meet Graphene
Graphene is a Python library for building GraphQL schemas/types fast and easily.
Graphene is a Python library for building *GraphQL* schemas/types fast and easily.
**But, what is GraphQL?** A GraphQL query is a string interpreted by a server that returns data in a specified format. We believe *GraphQL* is the next big thing after peanut butter and *REST*.
* **Easy to use**: Graphene helps you use *GraphQL* in Python easily.
* Graphene has **builtin support for Relay**.
* Support for **Django**, **SQLAlchemy** and **GAE**: mapping the models automatically to *GraphQL* types.
</div>
<div class="homepage-schema">
```python
import graphene
class Query(graphene.ObjectType):
hello = graphene.String()
def resolve_hello(self, args, info):
return 'world'
schema = graphene.Schema(query=Query)
```
```python
result = schema.execute('{ hello }')
```
</div>
</div>
<div>
#### What is GraphQL?
*GraphQL* is a data query language and runtime designed to request and deliver data in a performant way.
Advantages of using *GraphQL*:
* Only **one API endpoint**. One roundtrip for fetch everything you need.
* No data overfetching or underfetching.
* Autogenerated Graphical UI and docs based in your schema.
<div>