mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 12:16:58 +03:00
46 lines
857 B
Python
46 lines
857 B
Python
from django.conf.urls import url
|
|
|
|
import graphene
|
|
from graphene import Schema
|
|
from ..types import DjangoNode, DjangoObjectType
|
|
from ..views import GraphQLView
|
|
|
|
from .models import Article, Reporter
|
|
|
|
|
|
class Character(DjangoNode, DjangoObjectType):
|
|
|
|
class Meta:
|
|
model = Reporter
|
|
|
|
def get_node(self, id, context, info):
|
|
pass
|
|
|
|
|
|
class Human(DjangoNode, DjangoObjectType):
|
|
raises = graphene.String()
|
|
|
|
class Meta:
|
|
model = Article
|
|
|
|
def resolve_raises(self, *args):
|
|
raise Exception("This field should raise exception")
|
|
|
|
def get_node(self, id):
|
|
pass
|
|
|
|
|
|
class Query(graphene.ObjectType):
|
|
human = graphene.Field(Human)
|
|
|
|
def resolve_human(self, args, context, info):
|
|
return Human()
|
|
|
|
|
|
schema = Schema(query=Query)
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^graphql', GraphQLView.as_view(schema=schema)),
|
|
]
|