-
How I Architect My Graphene-Django Projects
byRecently at work Iโve been working quite a bit with Django and GraphQL. There doesnโt seem to be much written about best practices for organizing your Graphene-Django projects, so Iโve decided to document whatโs working for me. In this example I have 3 django apps: common, foo, and hoge.
Thereโs two main goals for this architecture:
- Minimize importing from โoutsideโ apps.
- Keep testing simple.
Queries and Mutations Package
Anything beyond simple queries (i.e. a query that just returns all records of a given model) are implemented in their own file in the queries or mutations sub-package. Each file is as self-contained as possible and contains any type definitions specific to that query, forms for validation, and an object that can be imported by the app's
schema.py.Input Validation
All input validation is performed by a classic Django form instance. For ease of use django form input does not necessarily match the GraphQL input. Consider a mutation that sends a list of dictionaries with an object id.
{
"foos": [
{
"id": 1,
"name": "Bumble"
},
{
"id": 2,
"name": "Bee"
]
}Before processing the request, you want to validate that the ids passed actually exist and or reference-able by the user making the request. Writing a django form field to handle input would be time consuming and potentially error prone. Instead each form has a class method called
convert_graphql_input_to_form_inputwhich takes the mutation input object and returns a dictionary that can be passed the form to clean and validate it.from django import forms
from foo import modelsclass UpdateFooForm(forms.Form):
foos = forms.ModelMultipleChoiceField(queryset=models.Foo.objects)@classmethod
def convert_graphql_input_to_form_input(cls, graphql_input: UpdateFooInput):
return { "foos": [foo["id"] for foo in graphql_input.foos]] }Extra Processing
Extra processing before save is handled by the form in a
prepare_datamethod. The role this method plays is to prepare any data prior to / without saving. Usually I'd prepare model instances, set values on existing instances and so forth. This allows thesave()method to usebulk_create()andbulk_update()easily to keeps save doing just that - saving.Objects/List of objects that are going to be saved / bulk_created / updated in save are stored on the form. The list is defined / set in init with full typehints. Example:
from typing import List, Optionalclass UpdateFooForm(forms.Form):
foos = forms.ModelMultipleChoiceField(queryset=models.Foo.objects)def __init__(*args, **kwargs)
super().__init__(*args, **kwargs)
self.foo_bars: List[FooBar] = []
self.bar: Optional[Bar] = NoneType Definition Graduation
Types are defined in each query / mutation where possible. As schema grows and multiple queries/mutations or other app's queries/mutations reference the same type, the location where the type is defined changes. This is partially for a cleaner architecture, but also to avoid import errors.
โโโ apps
โโโ common
โ โโโ schema.py
โ โโโ types.py # global types used by multiple apps are defined here
โโโ hoge
โโโ mutations
โ โโโ create_hoge.py # types only used by create_hoge are in here
โ โโโ update_hoge.py
โโโ queries
โ โโโ complex_query.py
โโโ schema.py
โโโ types.py # types used by either create/update_hoge and or complex_query are defined hereExample Mutation
The logic kept inside a query/mutation is as minimal as possible. This is as it's difficult to test logic inside the mutation without writing a full-blown end-to-end test.
from graphene_django.types import ErrorTypeclass UpdateHogeReturnType(graphene.Union):
class Meta:
types = (HogeType, ErrorType)class UpdateHogeMutationType(graphene.Mutation):
class Meta:
output = graphene.NonNull(UpdateHogeReturnType)class Arguments:
update_hoge_input = UpdateHogeInputType()@staticmethod
def mutate(root, info, update_hoge_input: UpdateHogeInputType) -> str:
data = UpdateHogeForm.convert_mutation_input_to_form_input(update_hoge_)
form = MutationValidationForm(data=data)
if form.is_valid():
form.prepare_data()
return form.save()
errors = ErrorType.from_errors(form)
return ErrorType(errors=errors)Adding Queries/Mutations to your Schema
This architecture tries to consistently follow the graphene standard for defining schema. i.e. when defining your schema you create a
class Queryandclass Mutation, then pass those to your schemaschema = Schema(query=Query, mutation=Mutation)Each app should build its Query and Mutation objects. These will then be imported in the schema.py, combined into a new Query class, and passed to schema.
# hoge/mutations/update_hoge.pyclass UpdateHogeMutation:
update_hoge = UpdateHogeMutationType.Field()
# hoge/mutations/schema.py
from .mutations import update_hoge, create_hoge
class Mutation(update_hoge.Mutation,
create_hoge.Mutation):
pass# common/schema.py
import graphene
import foo.schema
import hoge.schemaclass Query(hoge.schema.Query, foo.schema.Query, graphene.GrapheneObjectType):
passclass Mutation(hoge.schema.Mutation, foo.schema.Mutation, graphene.GrapheneObjectType):
passschema = graphene.Schema(query=Query, mutation=Mutation)
Directory Tree Overview
โโโ apps
โโโ common
โ โโโ schema.py
โ โโโ types.py
โโโ foo
โ โโโ mutations
โ โ โโโ create_or_update_foo.py
โ โโโ queries
โ โ โโโ complex_foo_query.py
โ โโโ schema.py
โโโ hoge
โโโ mutations
โ โโโ common.py
โ โโโ create_hoge.py
โ โโโ update_hoge.py
โโโ queries
โ โโโ complex_query.py
โโโ schema.py
โโโ types.py -
by
Went for a drive today (at Leoโs insistence) down to Chigasaki-Shi. Felt a little bad with Yokohama plates in Shonan plate territory.
Didnโt get out of the car, but man itโs so green and nice out there. Saw some huge koinobori too.
-
A Glimpse of the Future
byOne of the common memes to come from covid19 is to post a before-after photo of a famous city or landmark. The before covid19 photo is the city as weโve become accustomed to it: brown air full of smog. The after covid19 at the same location, but with naturally blue skies and clear air.
With everyone social distancing and automobile/truck traffic near zero we have been given a rare opportunity.ย We no longer have to imagine what our air and cities could be like if we didnโt drive pollution emitting vehicles everywhere, we can see, taste, and smell it with our own eyes.
Air pollution from cars and trucks have been suffocating our cities slowly, like one boilโs a frog, so we acclimate and brown air becomes โnormalโ and the way things have always been. With the burner temporary malfunctioning we can see just what a precarious position weโve put ourselves in.
When this is all done and our lungs have acclimated to clean air weโll have a choice: do we go back to the way things were and forget what weโve experienced, or do we the courage to demand a change.
https://twitter.com/sistercelluloid/status/1249027255797460993
-
UNIX: Making Computers Easier To Use
byWatching videos like this one about UNIX system from 1982 is a great reminder that no matter what you're building today, we all stand on the shoulders of giants. Highly worth 20 minutes of your time.
https://youtu.be/XvDZLjaCJuw
-
Checkin to ๅผฅ็ๅฐ้ง ๅๅ ฌๅ
Lovely park weather and the blossoms are starting to blossom.
-
Checkin to Tully's Coffee
The best spot to drink a coffee and watch some trains in front of Enoshima station.
-
Checkin to Enoshima Beach (ๆฑใๅณถใใผใ)
ๆตทใฉใ
-
Checkin to Starbucks
by in Kanagawa, JapanSakura donuts and an ice coffee while Leo sleeps.
-
Checkin to ๆธๅก็จๅ็ฝฒ
Tax office is a zoo.