notifier/services/schema.py

6 lines
121 B
Python
Raw Normal View History

2023-11-23 22:58:55 +00:00
from ariadne import QueryType, MutationType
query = QueryType()
mutation = MutationType()
resolvers = [query, mutation]