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