mirror of
https://github.com/rjNemo/graphql_python_template
synced 2026-06-06 02:26:47 +00:00
9 lines
217 B
Python
9 lines
217 B
Python
import graphene
|
|
|
|
from . import CreateTodo, DeleteTodo, UpdateTodo
|
|
|
|
|
|
class Mutations(graphene.ObjectType):
|
|
create_todo = CreateTodo.Field()
|
|
update_todo = UpdateTodo.Field()
|
|
delete_todo = DeleteTodo.Field()
|