2015-09-30 09:40:40 +03:00
|
|
|
import graphene
|
|
|
|
from graphene import resolve_only_args, relay
|
|
|
|
from graphene.contrib.django import (
|
|
|
|
DjangoObjectType,
|
|
|
|
DjangoNode
|
|
|
|
)
|
|
|
|
from .models import Ship as ShipModel, Faction as FactionModel
|
|
|
|
from .data import (
|
|
|
|
getFaction,
|
|
|
|
getShip,
|
2015-10-01 11:54:52 +03:00
|
|
|
getShips,
|
2015-09-30 09:40:40 +03:00
|
|
|
getRebels,
|
|
|
|
getEmpire,
|
|
|
|
)
|
|
|
|
|
|
|
|
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-10-03 08:17:51 +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):
|
|
|
|
return Ship(getShip(id))
|
|
|
|
|
2015-10-03 08:17:51 +03:00
|
|
|
|
2015-09-30 09:40:40 +03:00
|
|
|
class Faction(DjangoNode):
|
2015-10-03 08:17:51 +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):
|
|
|
|
return Faction(getFaction(id))
|
|
|
|
|
|
|
|
|
|
|
|
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):
|
|
|
|
return [Ship(s) for s in getShips()]
|
2015-09-30 09:40:40 +03:00
|
|
|
|
|
|
|
@resolve_only_args
|
|
|
|
def resolve_rebels(self):
|
|
|
|
return Faction(getRebels())
|
|
|
|
|
|
|
|
@resolve_only_args
|
|
|
|
def resolve_empire(self):
|
|
|
|
return Faction(getEmpire())
|
|
|
|
|
|
|
|
|
|
|
|
schema.query = Query
|