From 179a611974776a872bed9b6cb3fec90f0cad8d41 Mon Sep 17 00:00:00 2001 From: Patrick Arminio Date: Sat, 18 Nov 2017 07:22:51 +0000 Subject: [PATCH] Add initial tutorial structure --- docs/tutorial/index.rst | 20 ++++++++++++++++++++ docs/tutorial/part-1.rst | 6 ++++++ 2 files changed, 26 insertions(+) create mode 100644 docs/tutorial/index.rst create mode 100644 docs/tutorial/part-1.rst diff --git a/docs/tutorial/index.rst b/docs/tutorial/index.rst new file mode 100644 index 00000000..b6f91c76 --- /dev/null +++ b/docs/tutorial/index.rst @@ -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. diff --git a/docs/tutorial/part-1.rst b/docs/tutorial/part-1.rst new file mode 100644 index 00000000..1c70127a --- /dev/null +++ b/docs/tutorial/part-1.rst @@ -0,0 +1,6 @@ +Create your first schema +======================== + + +TODO: explain what a schema is +TODO: explain what a query is