Created
October 8, 2020 08:09
-
-
Save rob-blackbourn/703b345338a5a04320b28e81070c3dc6 to your computer and use it in GitHub Desktop.
Graphene 3 example schema
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import graphene | |
from .queries import Query | |
from .mutations import Mutations | |
from .subscriptions import Subscription | |
SCHEMA = graphene.Schema(query=Query, mutation=Mutations, subscription=Subscription) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment