2021-09-20 18:50:01 +08:00
|
|
|
import strawberry
|
2021-01-06 19:52:14 +08:00
|
|
|
|
|
|
|
from felicity.gql.setup.query import SetupQuery
|
2021-09-20 20:18:09 +08:00
|
|
|
# from felicity.gql.audit.query import AuditLogQuery
|
|
|
|
# from felicity.gql.setup.mutations import SetupMutations
|
2021-09-20 22:13:21 +08:00
|
|
|
from felicity.gql.user.query import UserQuery
|
|
|
|
|
|
|
|
|
2021-09-20 20:18:09 +08:00
|
|
|
# from felicity.gql.user.mutations import UserMutations
|
|
|
|
# from felicity.gql.client.query import ClientQuery
|
|
|
|
# from felicity.gql.client.mutations import ClientMutations
|
|
|
|
# from felicity.gql.patient.query import PatientQuery
|
|
|
|
# from felicity.gql.patient.mutations import PatientMutations
|
|
|
|
# from felicity.gql.analysis.query import AnalysisQuery
|
|
|
|
# from felicity.gql.analysis.mutations import AnalysisMutations
|
|
|
|
# from felicity.gql.worksheet.query import WorkSheetQuery
|
|
|
|
# from felicity.gql.worksheet.mutations import WorkSheetMutations
|
|
|
|
# from felicity.gql.markdown.query import MarkDownQuery
|
|
|
|
# from felicity.gql.markdown.mutations import MarkdownMutations
|
|
|
|
# from felicity.gql.kanban.query import KanBanQuery
|
|
|
|
# from felicity.gql.kanban.mutations import KanBanMutations
|
|
|
|
|
|
|
|
|
|
|
|
@strawberry.type
|
2021-01-06 19:52:14 +08:00
|
|
|
class Query(
|
2021-09-20 20:18:09 +08:00
|
|
|
SetupQuery,
|
2021-09-20 22:13:21 +08:00
|
|
|
UserQuery,
|
2021-04-18 18:37:49 +08:00
|
|
|
):
|
2021-01-06 19:52:14 +08:00
|
|
|
pass
|
|
|
|
|
2021-04-18 18:37:49 +08:00
|
|
|
|
2021-09-20 18:50:01 +08:00
|
|
|
gql_schema = strawberry.Schema(query=Query)
|