In my Graphene-Django project, I have this structure:
Project level:
schema.py
App level:
schema.py
queries.py
mutations.py
This works well but the queries file has grown quite large. Is there a way to split class Query into multiple classes and/or multiple files?
Robert
From the perspective of the project schema file, you can use inheritance in your Query class to pull in each of your separate Query classes. You can use the same technique to split your Mutation. For example:
(Note that I'm also dynamically adding the debug class if
DEBUG
is True -- this has nothing to do with your question, but it's handy.)You should able to use the same inheritance technique to further split your query if you need to, for example breaking apart
App1Query
.