2015-09-30 09:40:40 +03:00
|
|
|
import graphene
|
2015-10-31 23:46:43 +03:00
|
|
|
from graphene import relay, resolve_only_args
|
|
|
|
from graphene.contrib.django import DjangoNode, DjangoObjectType
|
|
|
|
|
|
|
|
from .data import (create_ship, get_empire, get_faction, get_rebels, get_ship,
|
|
|
|
get_ships)
|
|
|
|
from .models import Character as CharacterModel
|
|
|
|
from .models import Faction as FactionModel
|
|
|
|
from .models import Ship as ShipModel
|
2015-09-30 09:40:40 +03:00
|
|
|
|
|
|
|
schema = graphene.Schema(name='Starwars Django Relay Schema')
|
|
|
|
|
2015-10-03 08:17:51 +03:00
|
|
|
|
2015-09-30 09:40:40 +03:00
|
|
|
class Ship(DjangoNode):
|
2015-11-12 07:02:57 +03:00
|
|
|
|
2015-09-30 09:40:40 +03:00
|
|
|
class Meta:
|
2015-10-03 08:17:51 +03:00
|
|
|
model = ShipModel
|
2015-09-30 09:40:40 +03:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_node(cls, id):
|
2015-10-30 10:36:31 +03:00
|
|
|
return Ship(get_ship(id))
|
2015-09-30 09:40:40 +03:00
|
|
|
|
2015-10-03 08:17:51 +03:00
|
|
|
|
2015-10-27 09:54:51 +03:00
|
|
|
class Character(DjangoObjectType):
|
2015-11-12 07:02:57 +03:00
|
|
|
|
2015-10-11 00:53:46 +03:00
|
|
|
class Meta:
|
|
|
|
model = CharacterModel
|
2015-10-03 08:17:51 +03:00
|
|
|
|
2015-10-11 00:53:46 +03:00
|
|
|
|
|
|
|
class Faction(DjangoNode):
|
2015-11-12 07:02:57 +03:00
|
|
|
|
2015-09-30 09:40:40 +03:00
|
|
|
class Meta:
|
2015-10-03 08:17:51 +03:00
|
|
|
model = FactionModel
|
2015-09-30 09:40:40 +03:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_node(cls, id):
|
2015-10-30 10:36:31 +03:00
|
|
|
return Faction(get_faction(id))
|
|
|
|
|
|
|
|
|
|
|
|
class IntroduceShip(relay.ClientIDMutation):
|
2015-11-12 07:02:57 +03:00
|
|
|
|
2015-10-30 10:36:31 +03:00
|
|
|
class Input:
|
2015-11-12 09:15:28 +03:00
|
|
|
ship_name = graphene.String(required=True)
|
|
|
|
faction_id = graphene.String(required=True)
|
2015-10-30 10:36:31 +03:00
|
|
|
|
|
|
|
ship = graphene.Field(Ship)
|
|
|
|
faction = graphene.Field(Faction)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def mutate_and_get_payload(cls, input, info):
|
|
|
|
ship_name = input.get('ship_name')
|
|
|
|
faction_id = input.get('faction_id')
|
|
|
|
ship = create_ship(ship_name, faction_id)
|
|
|
|
faction = get_faction(faction_id)
|
2015-11-12 07:02:57 +03:00
|
|
|
return IntroduceShip(ship=Ship(ship), faction=Faction(faction))
|
2015-09-30 09:40:40 +03:00
|
|
|
|
|
|
|
|
|
|
|
class Query(graphene.ObjectType):
|
|
|
|
rebels = graphene.Field(Faction)
|
|
|
|
empire = graphene.Field(Faction)
|
|
|
|
node = relay.NodeField()
|
2015-10-01 11:54:52 +03:00
|
|
|
ships = relay.ConnectionField(Ship, description='All the ships.')
|
|
|
|
|
|
|
|
@resolve_only_args
|
|
|
|
def resolve_ships(self):
|
2015-10-30 10:36:31 +03:00
|
|
|
return [Ship(s) for s in get_ships()]
|
2015-09-30 09:40:40 +03:00
|
|
|
|
|
|
|
@resolve_only_args
|
|
|
|
def resolve_rebels(self):
|
2015-10-30 10:36:31 +03:00
|
|
|
return Faction(get_rebels())
|
2015-09-30 09:40:40 +03:00
|
|
|
|
|
|
|
@resolve_only_args
|
|
|
|
def resolve_empire(self):
|
2015-10-30 10:36:31 +03:00
|
|
|
return Faction(get_empire())
|
|
|
|
|
|
|
|
|
|
|
|
class Mutation(graphene.ObjectType):
|
|
|
|
introduce_ship = graphene.Field(IntroduceShip)
|
2015-09-30 09:40:40 +03:00
|
|
|
|
|
|
|
|
2015-11-03 06:36:49 +03:00
|
|
|
# We register the Character Model because if not would be
|
|
|
|
# inaccessible for the schema
|
|
|
|
schema.register(Character)
|
|
|
|
|
2015-09-30 09:40:40 +03:00
|
|
|
schema.query = Query
|
2015-10-30 10:36:31 +03:00
|
|
|
schema.mutation = Mutation
|