Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save t18n/b198b62b5bb3b44648c14e56cb53f523 to your computer and use it in GitHub Desktop.
Save t18n/b198b62b5bb3b44648c14e56cb53f523 to your computer and use it in GitHub Desktop.
  1. Prerequisite
  • Having Django app with basic set up running
  1. Install Graphene pip install graphene-django

  2. Register graphene-django In Project > Settings.py

  • Add graphene-django to INSTALLED_APPS array
  • Add Graphene schema under INSTALLED_APPS
GRAPHENE = {
  'SCHEMA' = 'project.schema.schema'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment