felicity-lims/felicity/api/gql/patient/__init__.py

16 lines
283 B
Python
Raw Normal View History

2023-08-04 13:12:43 +08:00
from .types import (
IdentificationType,
PatientIdentificationType,
PatientType,
PatientEdge,
2023-09-11 13:02:05 +08:00
PatientCursorPage,
2023-08-04 13:12:43 +08:00
)
2023-09-11 13:02:05 +08:00
patient_types = [
2023-08-04 13:12:43 +08:00
IdentificationType,
PatientIdentificationType,
PatientType,
PatientEdge,
2023-09-11 13:02:05 +08:00
PatientCursorPage,
]