Add initial tutorial structure

This commit is contained in:
Patrick Arminio 2017-11-18 07:22:51 +00:00
parent e71a52140a
commit 179a611974
No known key found for this signature in database
GPG Key ID: 6F384394A3714144
2 changed files with 26 additions and 0 deletions

20
docs/tutorial/index.rst Normal file
View File

@ -0,0 +1,20 @@
Writing your first Graphene Schema
==================================
This tutorial is roughly based on Django's poll tutorial.
It will be divided in multiple steps.
We will assume that you already have Graphene installed.
The tutorial will be based on Graphene 2.0 and Python 3.6.
TODO: link to installation documentation.
TODO: explain what we are going to do.
Creating your project
---------------------
TODO: explain what the usual structure for a Graphene schema looks
like.
TODO: link to first step of the tutorial, which will be the creation of
the first schema.

6
docs/tutorial/part-1.rst Normal file
View File

@ -0,0 +1,6 @@
Create your first schema
========================
TODO: explain what a schema is
TODO: explain what a query is