7 lines
122 B
Python
7 lines
122 B
Python
from ariadne import MutationType, QueryType
|
|
|
|
query = QueryType()
|
|
mutation = MutationType()
|
|
|
|
resolvers = [query, mutation]
|