996c0107c9
* Updated flowbite to 4.x * Start revamping styles * Remove unused GraphQL code * Make some templates more robuts
29 lines
453 B
Python
29 lines
453 B
Python
import graphene
|
|
|
|
from games.graphql.mutations import GameMutation
|
|
from games.graphql.queries import (
|
|
DeviceQuery,
|
|
GameQuery,
|
|
PlatformQuery,
|
|
PurchaseQuery,
|
|
SessionQuery,
|
|
)
|
|
|
|
|
|
class Query(
|
|
GameQuery,
|
|
DeviceQuery,
|
|
PlatformQuery,
|
|
PurchaseQuery,
|
|
SessionQuery,
|
|
graphene.ObjectType,
|
|
):
|
|
pass
|
|
|
|
|
|
class Mutation(GameMutation, graphene.ObjectType):
|
|
pass
|
|
|
|
|
|
schema = graphene.Schema(query=Query, mutation=Mutation)
|