python django graphql code example
Example 1: pip django graphql
pip install "graphene-django>=2.0"
Example 2: pip django graphql
from django.conf.urls import url
from graphene_django.views import GraphQLView
urlpatterns = [
# ...
url(r'^graphql$', GraphQLView.as_view(graphiql=True)),
]
Example 3: pip django graphql
# examples
from django.db import models
class UserModel(models.Model):
name = models.CharField(max_length=100)
last_name = models.CharField(max_length=100)