mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 12:16:58 +03:00
59 lines
1.4 KiB
Python
59 lines
1.4 KiB
Python
from graphql.core.type import GraphQLEnumValue
|
|
|
|
import graphene
|
|
from graphene import resolve_only_args
|
|
|
|
from .data import get_character, get_droid, get_hero, get_human
|
|
|
|
Episode = graphene.Enum('Episode', dict(
|
|
NEWHOPE=GraphQLEnumValue(4),
|
|
EMPIRE=GraphQLEnumValue(5),
|
|
JEDI=GraphQLEnumValue(6)
|
|
))
|
|
|
|
|
|
class Character(graphene.Interface):
|
|
id = graphene.ID()
|
|
name = graphene.String()
|
|
friends = graphene.List('Character')
|
|
appears_in = graphene.List(Episode)
|
|
|
|
def resolve_friends(self, args, *_):
|
|
# The character friends is a list of strings
|
|
return [get_character(f) for f in self.friends]
|
|
|
|
|
|
class Human(Character):
|
|
home_planet = graphene.String()
|
|
|
|
|
|
class Droid(Character):
|
|
primary_function = graphene.String()
|
|
|
|
|
|
class Query(graphene.ObjectType):
|
|
hero = graphene.Field(Character,
|
|
episode=graphene.Argument(Episode)
|
|
)
|
|
human = graphene.Field(Human,
|
|
id=graphene.String()
|
|
)
|
|
droid = graphene.Field(Droid,
|
|
id=graphene.String()
|
|
)
|
|
|
|
@resolve_only_args
|
|
def resolve_hero(self, episode=None):
|
|
return get_hero(episode)
|
|
|
|
@resolve_only_args
|
|
def resolve_human(self, id):
|
|
return get_human(id)
|
|
|
|
@resolve_only_args
|
|
def resolve_droid(self, id):
|
|
return get_droid(id)
|
|
|
|
|
|
Schema = graphene.Schema(query=Query)
|