Skip to content

Instantly share code, notes, and snippets.

@rob-blackbourn
Created October 8, 2020 08:09
Show Gist options
  • Save rob-blackbourn/703b345338a5a04320b28e81070c3dc6 to your computer and use it in GitHub Desktop.
Save rob-blackbourn/703b345338a5a04320b28e81070c3dc6 to your computer and use it in GitHub Desktop.
Graphene 3 example schema
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