mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-13 13:16:49 +03:00
41 lines
721 B
Python
41 lines
721 B
Python
from django.conf.urls import url
|
|
|
|
from graphene.contrib.django.views import GraphQLView
|
|
|
|
import graphene
|
|
from graphene import Schema
|
|
from graphene.contrib.django.types import (
|
|
DjangoNode,
|
|
DjangoInterface
|
|
)
|
|
|
|
from .models import Reporter, Article
|
|
|
|
|
|
class Character(DjangoNode):
|
|
class Meta:
|
|
model = Reporter
|
|
|
|
def get_node(self, id):
|
|
pass
|
|
|
|
|
|
class Human(DjangoNode):
|
|
raises = graphene.StringField()
|
|
|
|
class Meta:
|
|
model = Article
|
|
|
|
def resolve_raises(self, *args):
|
|
raise Exception("This field should raise exception")
|
|
|
|
def get_node(self, id):
|
|
pass
|
|
|
|
schema = Schema(query=Human)
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^graphql', GraphQLView.as_view(schema=schema)),
|
|
]
|